/** * Документация 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 { DeliveryPointInfoResponsePointDeliveryMethod } from './DeliveryPointInfoResponsePointDeliveryMethod'; /** * * @export * @interface V1DeliveryPointInfoResponsePoint */ export interface V1DeliveryPointInfoResponsePoint { /** * * @type {DeliveryPointInfoResponsePointDeliveryMethod} * @memberof V1DeliveryPointInfoResponsePoint */ delivery_method?: DeliveryPointInfoResponsePointDeliveryMethod; /** * `true`, если пункт самовывоза доступен. * * @type {boolean} * @memberof V1DeliveryPointInfoResponsePoint */ enabled?: boolean; } /** * Check if a given object implements the V1DeliveryPointInfoResponsePoint interface. */ export declare function instanceOfV1DeliveryPointInfoResponsePoint(value: object): value is V1DeliveryPointInfoResponsePoint; export declare function V1DeliveryPointInfoResponsePointFromJSON(json: any): V1DeliveryPointInfoResponsePoint; export declare function V1DeliveryPointInfoResponsePointFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1DeliveryPointInfoResponsePoint; export declare function V1DeliveryPointInfoResponsePointToJSON(value?: V1DeliveryPointInfoResponsePoint | null): any;