/** * Документация 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 { V1OrderValidationError } from './V1OrderValidationError'; /** * * @export * @interface V1FbpOrderPickUpDlvEditResponse */ export interface V1FbpOrderPickUpDlvEditResponse { /** * * @type {V1OrderValidationError} * @memberof V1FbpOrderPickUpDlvEditResponse */ error?: V1OrderValidationError; /** * `true`, если есть ошибка. * * @type {boolean} * @memberof V1FbpOrderPickUpDlvEditResponse */ is_error?: boolean; /** * Идентификатор актуальной версии черновика. * @type {number} * @memberof V1FbpOrderPickUpDlvEditResponse */ row_version?: number; } /** * Check if a given object implements the V1FbpOrderPickUpDlvEditResponse interface. */ export declare function instanceOfV1FbpOrderPickUpDlvEditResponse(value: object): value is V1FbpOrderPickUpDlvEditResponse; export declare function V1FbpOrderPickUpDlvEditResponseFromJSON(json: any): V1FbpOrderPickUpDlvEditResponse; export declare function V1FbpOrderPickUpDlvEditResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1FbpOrderPickUpDlvEditResponse; export declare function V1FbpOrderPickUpDlvEditResponseToJSON(value?: V1FbpOrderPickUpDlvEditResponse | null): any;