/** * Документация 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 { CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum } from './CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum'; import type { CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt } from './CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt'; import type { CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoTypeEnum } from './CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoTypeEnum'; /** * Отслеживание грузоместа. * @export * @interface CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo */ export interface CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo { /** * * @type {CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt} * @memberof CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo */ arrival_at?: CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt; /** * * @type {CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum} * @memberof CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo */ status?: CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum; /** * * @type {CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoTypeEnum} * @memberof CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo */ type?: CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoTypeEnum; } /** * Check if a given object implements the CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo interface. */ export declare function instanceOfCargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo(value: object): value is CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo; export declare function CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoFromJSON(json: any): CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo; export declare function CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo; export declare function CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoToJSON(value?: CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfo | null): any;