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

141 lines
5.7 KiB
TypeScript
Raw 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 { PostingV2FboSinglePostingExternalOrder } from './PostingV2FboSinglePostingExternalOrder';
import type { FboPostingFboPostingAnalyticsData } from './FboPostingFboPostingAnalyticsData';
import type { V2AdditionalDataItem } from './V2AdditionalDataItem';
import type { V2PostingProduct } from './V2PostingProduct';
import type { V2PostingFinancialDataFBO } from './V2PostingFinancialDataFBO';
import type { V2FboSinglePostingLegalInfo } from './V2FboSinglePostingLegalInfo';
/**
* Результат запроса.
* @export
* @interface V2FboPosting
*/
export interface V2FboPosting {
/**
*
* @type {Array<V2AdditionalDataItem>}
* @memberof V2FboPosting
*/
additional_data?: Array<V2AdditionalDataItem>;
/**
*
* @type {FboPostingFboPostingAnalyticsData}
* @memberof V2FboPosting
*/
analytics_data?: FboPostingFboPostingAnalyticsData;
/**
* Идентификатор причины отмены отправления.
* @type {number}
* @memberof V2FboPosting
*/
cancel_reason_id?: number;
/**
* Дата и время создания отправления.
* @type {string}
* @memberof V2FboPosting
*/
created_at?: string;
/**
*
* @type {PostingV2FboSinglePostingExternalOrder}
* @memberof V2FboPosting
*/
external_order?: PostingV2FboSinglePostingExternalOrder;
/**
* Дата фактической передачи отправления в доставку.
* @type {string}
* @memberof V2FboPosting
*/
fact_delivery_date?: string;
/**
*
* @type {V2PostingFinancialDataFBO}
* @memberof V2FboPosting
*/
financial_data?: V2PostingFinancialDataFBO;
/**
* Дата и время начала обработки отправления.
* @type {string}
* @memberof V2FboPosting
*/
in_process_at?: string;
/**
*
* @type {V2FboSinglePostingLegalInfo}
* @memberof V2FboPosting
*/
legal_info?: V2FboSinglePostingLegalInfo;
/**
* Идентификатор заказа, к которому относится отправление.
* @type {number}
* @memberof V2FboPosting
*/
order_id?: number;
/**
* Номер заказа, к которому относится отправление.
* @type {string}
* @memberof V2FboPosting
*/
order_number?: string;
/**
* Номер отправления.
* @type {string}
* @memberof V2FboPosting
*/
posting_number?: string;
/**
* Список товаров в отправлении.
* @type {Array<V2PostingProduct>}
* @memberof V2FboPosting
*/
products?: Array<V2PostingProduct>;
/**
* Статус отправления:
* - `awaiting_packaging` — ожидает упаковки,
* - `awaiting_deliver` — ожидает отгрузки,
* - `delivering` — доставляется,
* - `delivered` — доставлено,
* - `cancelled` — отменено.
*
* @type {string}
* @memberof V2FboPosting
*/
status?: string;
/**
* Подстатус отправления:
* - `posting_split_pending`, `posting_created` — создано;
* - `posting_packing` — на упаковке;
* - `posting_transferring_to_delivery` — передаётся в доставку;
* - `posting_on_way_to_city` — на пути в город доставки;
* - `posting_returned_to_warehouse` — возвращено на склад;
* - `posting_transferred_to_courier_service` — передаётся в службу доставки;
* - `posting_in_courier_service` — курьер в пути;
* - `posting_on_way_to_pickup_point` — в пути в пункт выдачи;
* - `posting_in_pickup_point` — в пункте выдачи;
* - `posting_delivered` — доставлено курьером;
* - `posting_received` — получено в пункте выдачи;
* - `posting_canceled` — отменено.
*
* @type {string}
* @memberof V2FboPosting
*/
substatus?: string;
}
/**
* Check if a given object implements the V2FboPosting interface.
*/
export declare function instanceOfV2FboPosting(value: object): value is V2FboPosting;
export declare function V2FboPostingFromJSON(json: any): V2FboPosting;
export declare function V2FboPostingFromJSONTyped(json: any, ignoreDiscriminator: boolean): V2FboPosting;
export declare function V2FboPostingToJSON(value?: V2FboPosting | null): any;