Skip to content

Files

Latest commit

 

History

History
42 lines (33 loc) · 4.13 KB

AddressResponseCompound.md

File metadata and controls

42 lines (33 loc) · 4.13 KB

AddressResponseCompound

An Address Object and children to create a complete structure

Properties

Name Type Description Notes
pki_address_id int The unique ID of the Address
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 [optional]
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
s_province_name_x str The name of the Province in the language of the requester
fki_country_id int The unique ID of the Country. Here are some common values (Complete list must be retrieved from API): Value
s_country_name_x str The name of the Country in the language of the requester
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_response_compound import AddressResponseCompound

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

# convert the object into a dict
address_response_compound_dict = address_response_compound_instance.to_dict()
# create an instance of AddressResponseCompound from a dict
address_response_compound_from_dict = AddressResponseCompound.from_dict(address_response_compound_dict)

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