/** * Документация 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. */ /** * Информация о расположении склада. * @export * @interface WarehouseAddressInfo */ export interface WarehouseAddressInfo { /** * Адрес склада. * @type {string} * @memberof WarehouseAddressInfo */ address?: string; /** * Широта. * @type {number} * @memberof WarehouseAddressInfo */ latitude?: number; /** * Долгота. * @type {number} * @memberof WarehouseAddressInfo */ longitude?: number; /** * Часовой пояс. * @type {string} * @memberof WarehouseAddressInfo */ utc?: string; } /** * Check if a given object implements the WarehouseAddressInfo interface. */ export declare function instanceOfWarehouseAddressInfo(value: object): value is WarehouseAddressInfo; export declare function WarehouseAddressInfoFromJSON(json: any): WarehouseAddressInfo; export declare function WarehouseAddressInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): WarehouseAddressInfo; export declare function WarehouseAddressInfoToJSON(value?: WarehouseAddressInfo | null): any;