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

137 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 { V1DraftStatusEnum } from './V1DraftStatusEnum';
import type { V1CancellationState } from './V1CancellationState';
import type { V1fbpDeliveryDetails } from './V1fbpDeliveryDetails';
import type { FbpDraftGetResponseDeclineReason } from './FbpDraftGetResponseDeclineReason';
/**
*
* @export
* @interface V1FbpDraftGetResponse
*/
export interface V1FbpDraftGetResponse {
/**
* Идентификатор списка провалидированных товаров.
* @type {string}
* @memberof V1FbpDraftGetResponse
*/
bundle_id?: string;
/**
*
* @type {V1CancellationState}
* @memberof V1FbpDraftGetResponse
*/
cancellation_state?: V1CancellationState;
/**
* Дата создания черновика.
* @type {string}
* @memberof V1FbpDraftGetResponse
*/
created_at?: string;
/**
*
* @type {FbpDraftGetResponseDeclineReason}
* @memberof V1FbpDraftGetResponse
*/
decline_reason?: FbpDraftGetResponseDeclineReason;
/**
* Дата удаления черновика.
* @type {string}
* @memberof V1FbpDraftGetResponse
*/
deleted_at?: string;
/**
*
* @type {V1fbpDeliveryDetails}
* @memberof V1FbpDraftGetResponse
*/
delivery_details?: V1fbpDeliveryDetails;
/**
* `true`, если черновик можно изменить.
*
* @type {boolean}
* @memberof V1FbpDraftGetResponse
*/
editable?: boolean;
/**
* Идентификатор черновика.
* @type {number}
* @memberof V1FbpDraftGetResponse
*/
id?: number;
/**
* `true`, если черновик можно отменить.
*
* @type {boolean}
* @memberof V1FbpDraftGetResponse
*/
is_cancelable?: boolean;
/**
* `true`, если черновик можно удалить.
*
* @type {boolean}
* @memberof V1FbpDraftGetResponse
*/
is_deletable?: boolean;
/**
* `true`, если доступна регистрация.
*
* @type {boolean}
* @memberof V1FbpDraftGetResponse
*/
is_registration_available?: boolean;
/**
* `true`, если черновик заблокирован.
*
* @type {boolean}
* @memberof V1FbpDraftGetResponse
*/
locked?: boolean;
/**
* Количество грузомест.
* @type {number}
* @memberof V1FbpDraftGetResponse
*/
package_units_count?: number;
/**
* Идентификатор актуальной версии черновика.
* @type {number}
* @memberof V1FbpDraftGetResponse
*/
row_version?: number;
/**
*
* @type {V1DraftStatusEnum}
* @memberof V1FbpDraftGetResponse
*/
status?: V1DraftStatusEnum;
/**
* Идентификатор поставки.
* @type {string}
* @memberof V1FbpDraftGetResponse
*/
supply_id?: string;
/**
* Идентификатор склада.
* @type {number}
* @memberof V1FbpDraftGetResponse
*/
warehouse_id?: number;
}
/**
* Check if a given object implements the V1FbpDraftGetResponse interface.
*/
export declare function instanceOfV1FbpDraftGetResponse(value: object): value is V1FbpDraftGetResponse;
export declare function V1FbpDraftGetResponseFromJSON(json: any): V1FbpDraftGetResponse;
export declare function V1FbpDraftGetResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1FbpDraftGetResponse;
export declare function V1FbpDraftGetResponseToJSON(value?: V1FbpDraftGetResponse | null): any;