/** * Документация 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 V2PolygonBindRequest */ export interface V2PolygonBindRequest { /** * Идентификатор метода доставки. * @type {number} * @memberof V2PolygonBindRequest */ delivery_method_id: number; /** * Идентификатор полигона. * @type {number} * @memberof V2PolygonBindRequest */ polygon_id: number; /** * Время доставки в минутах. * @type {number} * @memberof V2PolygonBindRequest */ time: V2PolygonBindRequestTimeEnum; /** * Идентификатор склада. * @type {number} * @memberof V2PolygonBindRequest */ warehouse_id: number; } /** * @export */ export declare const V2PolygonBindRequestTimeEnum: { readonly NUMBER_15: 15; readonly NUMBER_30: 30; readonly NUMBER_45: 45; readonly NUMBER_60: 60; readonly NUMBER_90: 90; readonly NUMBER_120: 120; readonly NUMBER_150: 150; }; export type V2PolygonBindRequestTimeEnum = typeof V2PolygonBindRequestTimeEnum[keyof typeof V2PolygonBindRequestTimeEnum]; /** * Check if a given object implements the V2PolygonBindRequest interface. */ export declare function instanceOfV2PolygonBindRequest(value: object): value is V2PolygonBindRequest; export declare function V2PolygonBindRequestFromJSON(json: any): V2PolygonBindRequest; export declare function V2PolygonBindRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): V2PolygonBindRequest; export declare function V2PolygonBindRequestToJSON(value?: V2PolygonBindRequest | null): any;