An Address Object and children to create a complete structure
Name | Type | Description | Notes |
---|---|---|---|
pki_address_id | int | The unique ID of the Address | [optional] |
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 |
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] |
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_from_dict = AddressRequestCompound.from_dict(address_request_compound_dict)