/** * Документация Ozon Seller API * По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. > [Инструкции по работе с маркетплейсом](https://seller-edu.ozon.ru) > [Информационная платформа и сообщество разработчиков Ozon for dev](https://dev.ozon.ru/) * * The version of the OpenAPI document: 2.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { WarehouseAddressCoordinates } from './WarehouseAddressCoordinates'; /** * Информация об адресе склада продавца. * @export * @interface WarehouseAddress */ export interface WarehouseAddress { /** * Адрес. * @type {string} * @memberof WarehouseAddress */ address?: string; /** * Город. * @type {string} * @memberof WarehouseAddress */ city?: string; /** * * @type {WarehouseAddressCoordinates} * @memberof WarehouseAddress */ coordinates?: WarehouseAddressCoordinates; /** * Код страны в формате ISO 2. * @type {string} * @memberof WarehouseAddress */ country_code?: string; /** * Идентификатор кластера размещения. * @type {number} * @memberof WarehouseAddress */ macrolocal_cluster_id?: number; /** * Регион. * @type {string} * @memberof WarehouseAddress */ region?: string; /** * Часовой пояс. * @type {string} * @memberof WarehouseAddress */ timezone?: string; } /** * Check if a given object implements the WarehouseAddress interface. */ export declare function instanceOfWarehouseAddress(value: object): value is WarehouseAddress; export declare function WarehouseAddressFromJSON(json: any): WarehouseAddress; export declare function WarehouseAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): WarehouseAddress; export declare function WarehouseAddressToJSON(value?: WarehouseAddress | null): any;