/** * @type StorefrontZoneCreateResponse: The response of create zone, includes zone and zone properties. * * @property zoneId: The zone id tag. * - **Pattern:** /^.*$/ * * @property zoneName: The domain name for the zone. * - **Pattern:** /^.*$/ * * @property status: current status of the zone * * @property createdOn: Date and time of zone creation. * */ export type StorefrontZoneCreateResponse = { zoneId: string; zoneName: string; status: StorefrontZoneCreateResponseStatusEnum; createdOn: string; } & { [key: string]: any; }; export type StorefrontZoneCreateResponseStatusEnum = 'active' | 'pending' | 'initializing' | 'moved' | 'deleted' | 'deactivated';