/** * Документация 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. */ /** * Информация о водителе и машине. Только для pick-up отгрузок. * @export * @interface SupplyOrderDetailsResponseVehicleValue */ export interface SupplyOrderDetailsResponseVehicleValue { /** * `true`, если информация о водителе удалена. * * @type {boolean} * @memberof SupplyOrderDetailsResponseVehicleValue */ driver_is_deleted?: boolean; /** * Имя водителя. * @type {string} * @memberof SupplyOrderDetailsResponseVehicleValue */ driver_name?: string; /** * Телефон водителя. * @type {string} * @memberof SupplyOrderDetailsResponseVehicleValue */ driver_phone?: string; /** * `true`, если информация о машине удалена. * * @type {boolean} * @memberof SupplyOrderDetailsResponseVehicleValue */ vehicle_is_deleted?: boolean; /** * Модель машины. * @type {string} * @memberof SupplyOrderDetailsResponseVehicleValue */ vehicle_model?: string; /** * Номер машины. * @type {string} * @memberof SupplyOrderDetailsResponseVehicleValue */ vehicle_number?: string; } /** * Check if a given object implements the SupplyOrderDetailsResponseVehicleValue interface. */ export declare function instanceOfSupplyOrderDetailsResponseVehicleValue(value: object): value is SupplyOrderDetailsResponseVehicleValue; export declare function SupplyOrderDetailsResponseVehicleValueFromJSON(json: any): SupplyOrderDetailsResponseVehicleValue; export declare function SupplyOrderDetailsResponseVehicleValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupplyOrderDetailsResponseVehicleValue; export declare function SupplyOrderDetailsResponseVehicleValueToJSON(value?: SupplyOrderDetailsResponseVehicleValue | null): any;