Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 3.86 KB

AddressRequestCompound.md

File metadata and controls

39 lines (30 loc) · 3.86 KB

AddressRequestCompound

An Address Object and children to create a complete structure

Properties

Name Type Description Notes
fki_addresstype_id int The unique ID of the Addresstype. Valid values: Value
s_address_civic str The Civic number.
s_address_street str The Street Name
s_address_suite str The Suite or appartment number
s_address_city str The City name
fki_province_id int The unique ID of the Province. Here are some common values (Complete list must be retrieved from API): Value
fki_country_id int The unique ID of the Country. Here are some common values (Complete list must be retrieved from API): Value
s_address_zip str The Postal/Zip Code The value must be entered without spaces
f_address_longitude str The Longitude of the Address [optional]
f_address_latitude str The Latitude of the Address [optional]

Example

from eZmaxApi.models.address_request_compound import AddressRequestCompound

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

# convert the object into a dict
address_request_compound_dict = address_request_compound_instance.to_dict()
# create an instance of AddressRequestCompound from a dict
address_request_compound_form_dict = address_request_compound.from_dict(address_request_compound_dict)

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