/** * Документация 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 V1PostingCancelRequest */ export interface V1PostingCancelRequest { /** * Номер отправления. * @type {string} * @memberof V1PostingCancelRequest */ posting_number: string; /** * Идентификатор причины отмены. * @type {number} * @memberof V1PostingCancelRequest */ reason_id: number; /** * Дополнительная информация по отмене. * @type {string} * @memberof V1PostingCancelRequest */ reason_message?: string; } /** * Check if a given object implements the V1PostingCancelRequest interface. */ export declare function instanceOfV1PostingCancelRequest(value: object): value is V1PostingCancelRequest; export declare function V1PostingCancelRequestFromJSON(json: any): V1PostingCancelRequest; export declare function V1PostingCancelRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1PostingCancelRequest; export declare function V1PostingCancelRequestToJSON(value?: V1PostingCancelRequest | null): any;