73 lines
3.4 KiB
TypeScript
73 lines
3.4 KiB
TypeScript
/**
|
||
* Документация Ozon Seller API
|
||
* По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. <aside class=\"warning\">Обновляем корневой TLS/SSL-сертификат GlobalSign — вместо него будем использовать <a href=\"https://app.harica.gr/\">HARICA</a>.<br><a href=\"https://dev.ozon.ru/news/775-Izmeneniia-v-Ozon-API-migratsiia-kornevogo-sertifikata-UTs-Ozon/\">Подробнее о переходе на HARICA на платформе разработчиков Ozon for dev</a></aside> > [Инструкции по работе с маркетплейсом](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 { V1UpdateWarehouseFBSRequestWorkingDaysEnum } from './V1UpdateWarehouseFBSRequestWorkingDaysEnum';
|
||
import type { V1UpdateWarehouseFBSRequestOptions } from './V1UpdateWarehouseFBSRequestOptions';
|
||
import type { V1UpdateWarehouseFBSRequestAddressCoordinates } from './V1UpdateWarehouseFBSRequestAddressCoordinates';
|
||
/**
|
||
*
|
||
* @export
|
||
* @interface V1UpdateWarehouseFBSRequest
|
||
*/
|
||
export interface V1UpdateWarehouseFBSRequest {
|
||
/**
|
||
*
|
||
* @type {V1UpdateWarehouseFBSRequestAddressCoordinates}
|
||
* @memberof V1UpdateWarehouseFBSRequest
|
||
*/
|
||
address_coordinates: V1UpdateWarehouseFBSRequestAddressCoordinates;
|
||
/**
|
||
* Название склада.
|
||
* @type {string}
|
||
* @memberof V1UpdateWarehouseFBSRequest
|
||
*/
|
||
name?: string;
|
||
/**
|
||
*
|
||
* @type {V1UpdateWarehouseFBSRequestOptions}
|
||
* @memberof V1UpdateWarehouseFBSRequest
|
||
*/
|
||
options?: V1UpdateWarehouseFBSRequestOptions;
|
||
/**
|
||
* Номер телефона склада.
|
||
* @type {string}
|
||
* @memberof V1UpdateWarehouseFBSRequest
|
||
*/
|
||
phone?: string;
|
||
/**
|
||
* Идентификатор склада.
|
||
* @type {number}
|
||
* @memberof V1UpdateWarehouseFBSRequest
|
||
*/
|
||
warehouse_id: number;
|
||
/**
|
||
* Рабочие дни склада:
|
||
* - `MONDAY` — понедельник;
|
||
* - `TUESDAY` — вторник;
|
||
* - `WEDNESDAY` — среда;
|
||
* - `THURSDAY` — четверг;
|
||
* - `FRIDAY` — пятница;
|
||
* - `SATURDAY` — суббота;
|
||
* - `SUNDAY` — воскресенье.
|
||
*
|
||
* @type {Array<V1UpdateWarehouseFBSRequestWorkingDaysEnum>}
|
||
* @memberof V1UpdateWarehouseFBSRequest
|
||
*/
|
||
working_days?: Array<V1UpdateWarehouseFBSRequestWorkingDaysEnum>;
|
||
}
|
||
/**
|
||
* Check if a given object implements the V1UpdateWarehouseFBSRequest interface.
|
||
*/
|
||
export declare function instanceOfV1UpdateWarehouseFBSRequest(value: object): value is V1UpdateWarehouseFBSRequest;
|
||
export declare function V1UpdateWarehouseFBSRequestFromJSON(json: any): V1UpdateWarehouseFBSRequest;
|
||
export declare function V1UpdateWarehouseFBSRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1UpdateWarehouseFBSRequest;
|
||
export declare function V1UpdateWarehouseFBSRequestToJSON(value?: V1UpdateWarehouseFBSRequest | null): any;
|