diff --git a/types/Shipment/ShipmentCreateParameters.d.ts b/types/Shipment/ShipmentCreateParameters.d.ts index 8665c34e0..2457f20a0 100644 --- a/types/Shipment/ShipmentCreateParameters.d.ts +++ b/types/Shipment/ShipmentCreateParameters.d.ts @@ -15,6 +15,19 @@ export declare interface IShipmentCreateParameters { */ carrier_accounts?: string[] | null; + /** + * Optional service name to create one-call-buy shipment + */ + service?: string | null; + + tax_identifiers?: TaxIdentifier[] | null customs_info?: DeepPartial | null; options?: DeepPartial | null; } + +type TaxIdentifier = { + entity: "SENDER" | "RECIPIENT" + tax_id: string, + tax_id_type: string; + issuing_country: string +}