/** * Документация 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 V1SupplyOrderPassStatusRequest */ export interface V1SupplyOrderPassStatusRequest { /** * Идентификатор операции. * @type {string} * @memberof V1SupplyOrderPassStatusRequest */ operation_id: string; } /** * Check if a given object implements the V1SupplyOrderPassStatusRequest interface. */ export declare function instanceOfV1SupplyOrderPassStatusRequest(value: object): value is V1SupplyOrderPassStatusRequest; export declare function V1SupplyOrderPassStatusRequestFromJSON(json: any): V1SupplyOrderPassStatusRequest; export declare function V1SupplyOrderPassStatusRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1SupplyOrderPassStatusRequest; export declare function V1SupplyOrderPassStatusRequestToJSON(value?: V1SupplyOrderPassStatusRequest | null): any;