/** * Документация 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 { CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAtTimezoneInfo } from './CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAtTimezoneInfo'; /** * Информация о приёме грузоместа. * @export * @interface CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt */ export interface CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt { /** * Дата приёма грузоместа. * @type {string} * @memberof CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt */ date?: string; /** * * @type {CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAtTimezoneInfo} * @memberof CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt */ timezone_info?: CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAtTimezoneInfo; } /** * Check if a given object implements the CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt interface. */ export declare function instanceOfCargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt(value: object): value is CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt; export declare function CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAtFromJSON(json: any): CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt; export declare function CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAtFromJSONTyped(json: any, ignoreDiscriminator: boolean): CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt; export declare function CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAtToJSON(value?: CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoArrivalAt | null): any;