/** * Документация 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 { GetEtgbResponseResultEtgb } from './GetEtgbResponseResultEtgb'; /** * * @export * @interface GetEtgbResponseResult */ export interface GetEtgbResponseResult { /** * Номер отправления. * @type {string} * @memberof GetEtgbResponseResult */ posting_number?: string; /** * * @type {GetEtgbResponseResultEtgb} * @memberof GetEtgbResponseResult */ etgb?: GetEtgbResponseResultEtgb; } /** * Check if a given object implements the GetEtgbResponseResult interface. */ export declare function instanceOfGetEtgbResponseResult(value: object): value is GetEtgbResponseResult; export declare function GetEtgbResponseResultFromJSON(json: any): GetEtgbResponseResult; export declare function GetEtgbResponseResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetEtgbResponseResult; export declare function GetEtgbResponseResultToJSON(value?: GetEtgbResponseResult | null): any;