Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 966 Bytes

File metadata and controls

29 lines (20 loc) · 966 Bytes

SpecialServices

Properties

Name Type Description Notes
services List[SpecialServicesServicesInner] [optional]

Example

from shipping.models.special_services import SpecialServices

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

# convert the object into a dict
special_services_dict = special_services_instance.to_dict()
# create an instance of SpecialServices from a dict
special_services_from_dict = SpecialServices.from_dict(special_services_dict)

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