Files
ozon-seller-typescript/dist/models/PostingV1GetFbpPostingResponsePosting.d.ts
2026-08-21 12:19:50 +00:00

102 lines
4.7 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* Документация Ozon Seller API
* По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. <aside class=\"warning\">Обновляем корневой TLS/SSL-сертификат GlobalSign — вместо него будем использовать <a href=\"https://app.harica.gr/\">HARICA</a>.<br><a href=\"https://dev.ozon.ru/news/775-Izmeneniia-v-Ozon-API-migratsiia-kornevogo-sertifikata-UTs-Ozon/\">Подробнее о переходе на HARICA на платформе разработчиков Ozon for dev</a></aside> > [Инструкции по работе с маркетплейсом](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 { PostingV1GetFbpPostingResponsePostingFinancialData } from './PostingV1GetFbpPostingResponsePostingFinancialData';
import type { PostingV1GetFbpPostingResponsePostingAnalyticsData } from './PostingV1GetFbpPostingResponsePostingAnalyticsData';
import type { PostingV1GetFbpPostingResponsePostingCancellation } from './PostingV1GetFbpPostingResponsePostingCancellation';
import type { PostingV1GetFbpPostingResponsePostingProducts } from './PostingV1GetFbpPostingResponsePostingProducts';
/**
* Информация об отправлении.
* @export
* @interface PostingV1GetFbpPostingResponsePosting
*/
export interface PostingV1GetFbpPostingResponsePosting {
/**
*
* @type {PostingV1GetFbpPostingResponsePostingAnalyticsData}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
analytics_data?: PostingV1GetFbpPostingResponsePostingAnalyticsData;
/**
*
* @type {PostingV1GetFbpPostingResponsePostingCancellation}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
cancellation?: PostingV1GetFbpPostingResponsePostingCancellation;
/**
*
* @type {PostingV1GetFbpPostingResponsePostingFinancialData}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
financial_data?: PostingV1GetFbpPostingResponsePostingFinancialData;
/**
* Дата и время начала обработки отправления.
* @type {string}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
in_process_at?: string;
/**
* Дата создания заказа.
* @type {string}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
order_date?: string;
/**
* Идентификатор заказа, к которому относится отправление.
* @type {number}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
order_id?: number;
/**
* Номер заказа, к которому относится отправление.
* @type {string}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
order_number?: string;
/**
* Идентификатор отправления.
* @type {string}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
posting_number?: string;
/**
* Список товаров в отправлении.
* @type {Array<PostingV1GetFbpPostingResponsePostingProducts>}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
products?: Array<PostingV1GetFbpPostingResponsePostingProducts>;
/**
* Статус отправления.
* @type {number}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
status?: number;
/**
* Подстатус отправления.
* @type {string}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
substatus?: string;
/**
* Идентификатор провайдера доставки.
* @type {number}
* @memberof PostingV1GetFbpPostingResponsePosting
*/
tpl_provider_id?: number;
}
/**
* Check if a given object implements the PostingV1GetFbpPostingResponsePosting interface.
*/
export declare function instanceOfPostingV1GetFbpPostingResponsePosting(value: object): value is PostingV1GetFbpPostingResponsePosting;
export declare function PostingV1GetFbpPostingResponsePostingFromJSON(json: any): PostingV1GetFbpPostingResponsePosting;
export declare function PostingV1GetFbpPostingResponsePostingFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostingV1GetFbpPostingResponsePosting;
export declare function PostingV1GetFbpPostingResponsePostingToJSON(value?: PostingV1GetFbpPostingResponsePosting | null): any;