/** * @type StorefrontZoneCreateRequest: The storefront zone information to be created. * * @property domainName: Domain name for the site. * - **Pattern:** /^.*$/ * * @property lastMigrationStep: Optional. Specifies the final migration step from which to resume (for example, 8-LegacyToProxyIpAccessRuleMigrationStep). * - **Pattern:** /^.*$/ * */ export type StorefrontZoneCreateRequest = { domainName: string; lastMigrationStep?: string; } & { [key: string]: any; };