release 0.1.0
This commit is contained in:
139
dist/models/V1FbpArchiveGetResponse.d.ts
vendored
Normal file
139
dist/models/V1FbpArchiveGetResponse.d.ts
vendored
Normal file
@@ -0,0 +1,139 @@
|
||||
/**
|
||||
* Документация 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 { V1ArchiveSkuSummary } from './V1ArchiveSkuSummary';
|
||||
import type { Fbpv1DeliveryDetails } from './Fbpv1DeliveryDetails';
|
||||
import type { V1ArchiveDeclineReason } from './V1ArchiveDeclineReason';
|
||||
import type { V1ArchiveStatusEnum } from './V1ArchiveStatusEnum';
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @interface V1FbpArchiveGetResponse
|
||||
*/
|
||||
export interface V1FbpArchiveGetResponse {
|
||||
/**
|
||||
* Идентификатор акта приёмки.
|
||||
* @type {string}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
act_file_uuid?: string;
|
||||
/**
|
||||
* Идентификатор провалидированного списка товаров.
|
||||
* @type {string}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
bundle_id?: string;
|
||||
/**
|
||||
*
|
||||
* @type {V1ArchiveSkuSummary}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
bundle_sku_summary?: V1ArchiveSkuSummary;
|
||||
/**
|
||||
* Идентификатор типа поставки.
|
||||
* @type {number}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
business_flow_type_id?: number;
|
||||
/**
|
||||
* Дата и время создания заявки на поставку.
|
||||
* @type {string}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
created_date?: string;
|
||||
/**
|
||||
*
|
||||
* @type {V1ArchiveDeclineReason}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
decline_reason?: V1ArchiveDeclineReason;
|
||||
/**
|
||||
*
|
||||
* @type {Fbpv1DeliveryDetails}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
delivery_details?: Fbpv1DeliveryDetails;
|
||||
/**
|
||||
* `true`, если был сформирован акт приёмки.
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
has_act?: boolean;
|
||||
/**
|
||||
* `true`, если были сформированы этикетки.
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
has_label?: boolean;
|
||||
/**
|
||||
* Номер записи в архиве.
|
||||
* @type {number}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
id?: number;
|
||||
/**
|
||||
* Идентификатор черновика поставки.
|
||||
* @type {number}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
order_draft_id?: number;
|
||||
/**
|
||||
* Идентификатор завершённой поставки.
|
||||
* @type {string}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
order_number?: string;
|
||||
/**
|
||||
* Количество грузомест.
|
||||
* @type {number}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
package_units_count?: number;
|
||||
/**
|
||||
* Дата и время принятия поставки.
|
||||
* @type {string}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
receive_date?: string;
|
||||
/**
|
||||
* Идентификатор актуальной версии черновика.
|
||||
* @type {number}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
row_version?: number;
|
||||
/**
|
||||
*
|
||||
* @type {V1ArchiveStatusEnum}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
status?: V1ArchiveStatusEnum;
|
||||
/**
|
||||
* Идентификатор поставки.
|
||||
* @type {string}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
supply_id?: string;
|
||||
/**
|
||||
* Идентификатор склада.
|
||||
* @type {number}
|
||||
* @memberof V1FbpArchiveGetResponse
|
||||
*/
|
||||
warehouse_id?: number;
|
||||
}
|
||||
/**
|
||||
* Check if a given object implements the V1FbpArchiveGetResponse interface.
|
||||
*/
|
||||
export declare function instanceOfV1FbpArchiveGetResponse(value: object): value is V1FbpArchiveGetResponse;
|
||||
export declare function V1FbpArchiveGetResponseFromJSON(json: any): V1FbpArchiveGetResponse;
|
||||
export declare function V1FbpArchiveGetResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1FbpArchiveGetResponse;
|
||||
export declare function V1FbpArchiveGetResponseToJSON(value?: V1FbpArchiveGetResponse | null): any;
|
||||
Reference in New Issue
Block a user