import { IkasStockLocationAddress } from "./address"; export type IkasStockLocation = { address: IkasStockLocationAddress | null; deliveryTime: IkasStockLocationDeliveryTime | null; description: string | null; isRemindOutOfStockEnabled: boolean | null; name: string; outOfStockMailList: string[] | null; type: IkasStockLocationType | null; id: string; }; export type IkasStockLocationDeliveryTime = "TWO_IN_FOUR_DAYS" | "WITHIN_FOUR_HOURS" | "WITHIN_ONE_HOUR" | "WITHIN_PLUS_FIVE_DAYS" | "WITHIN_TWENTY_FOUR_HOURS" | "WITHIN_TWO_HOURS"; export type IkasStockLocationType = "PHYSICAL" | "VIRTUAL";