/** * Документация 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 { 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;