Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.28 KB

File metadata and controls

38 lines (29 loc) · 2.28 KB

CreateBulkShipmentsAPIRequest

Properties

Name Type Description Notes
group_name str [optional]
size str This indicates the label size of the Bulk Shipment, e.g., DocSize can be 8' X 11'.
type str This indicates the type of the Batch Shipment, e.g., Shipping Label.
format str This defines the type of the shipment which is printed, e.g., Shipping label gets printed in PDF form. [optional]
name str
carrier_account_id str Default `carrierAccountId` to be used for this batch. You can override this value by defining it at shipment level.
parcel_type str Default `parcelType` specific to the carrier, e.g., FRPKG, LGENV, TUBE,PKG to be used for this batch. You can override this value by defining it at shipment level.
service_id str Default abbreviated name `serviceId` of the carrier-specific service to be used for this batch. You can override this value by defining it at shipment level.
special_services List[SpecialService] Default `specialServices` to be used for this batch. You can override this value by defining it at shipment level. [optional]
shipments List[ShipmentInternational]

Example

from shipping.models.create_bulk_shipments_api_request import CreateBulkShipmentsAPIRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CreateBulkShipmentsAPIRequest from a JSON string
create_bulk_shipments_api_request_instance = CreateBulkShipmentsAPIRequest.from_json(json)
# print the JSON string representation of the object
print(CreateBulkShipmentsAPIRequest.to_json())

# convert the object into a dict
create_bulk_shipments_api_request_dict = create_bulk_shipments_api_request_instance.to_dict()
# create an instance of CreateBulkShipmentsAPIRequest from a dict
create_bulk_shipments_api_request_from_dict = CreateBulkShipmentsAPIRequest.from_dict(create_bulk_shipments_api_request_dict)

[Back to Model list] [Back to API list] [Back to README]