UNPKG

@apideck/node

Version:
46 lines (45 loc) 1.54 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents the tracking information associated with an ecommerce order. * @export * @interface TrackingItem */ export interface TrackingItem { /** * The name or code of the carrier or shipping company that is handling the shipment. * @type {string} * @memberof TrackingItem */ provider: string | null; /** * The tracking number associated with the shipment, which can be used to track the progress of the delivery. * @type {string} * @memberof TrackingItem */ number: string | null; /** * The URL of the carrier's tracking page, which can be used to view detailed information about the shipment's progress. * @type {string} * @memberof TrackingItem */ url?: string | null; /** * The date and time when the object was last updated. * @type {Date} * @memberof TrackingItem */ readonly updated_at?: Date | null; } export declare function TrackingItemFromJSON(json: any): TrackingItem; export declare function TrackingItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackingItem; export declare function TrackingItemToJSON(value?: TrackingItem | null): any;