Interface TransitItemModel

Identifies transit items (specific products) listed on a document

interface TransitItemModel {
    caseId?: string;
    containers?: Container[];
    countryOfOrigin?: AddressModel;
    customsTariffNumber?: CustomsTariffNumber;
    customsValue?: Money;
    description?: Meta<string>;
    destinationCountry?: Meta<string>;
    documentId?: string;
    grossWeight?: Weight;
    id?: string;
    netWeight?: Weight;
    packingList?: Meta<string>;
    preliminaryDocuments?: DigicustDocumentModel[];
    procedure?: Procedure;
    reference?: Meta<string>;
    shipperCountry?: Meta<string>;
    totalValue?: Money;
    weight?: Weight;
}

Properties

caseId?: string
containers?: Container[]
countryOfOrigin?: AddressModel
customsTariffNumber?: CustomsTariffNumber
customsValue?: Money
description?: Meta<string>
destinationCountry?: Meta<string>
documentId?: string
grossWeight?: Weight
id?: string
netWeight?: Weight
packingList?: Meta<string>
preliminaryDocuments?: DigicustDocumentModel[]
procedure?: Procedure
reference?: Meta<string>
shipperCountry?: Meta<string>
totalValue?: Money
weight?: Weight