Skip to content

Latest commit

 

History

History
63 lines (54 loc) · 3.62 KB

File metadata and controls

63 lines (54 loc) · 3.62 KB

BrokerListElement

A Broker List Element

Properties

Name Type Description Notes
pki_broker_id int The unique ID of the Broker.
fki_department_id int The unique ID of the Department
s_department_name_x str The Name of the Department in the language of the requester [optional]
fki_brokertype_id int The unique ID of the Brokertype
s_brokertype_name_x str The name of the Brokertype in the language of the requester
s_broker_code str The code of the Broker
s_realestateboardnumber_number str The number of the Realestateboardnumber [optional]
i_agent_bannernumber int The bannernumber of the Agent [optional]
s_language_name_x str The Name of the Language in the language of the requester [optional]
i_broker_photocopiercode int The photocopiercode of the Broker
i_broker_longdistancecode int The longdistancecode of the Broker
s_broker_name str The name of the Broker
s_broker_realestateassociationlicense str The realestateassociationlicense of the Broker
dt_broker_hiredate str The hiredate of the Broker
dt_broker_leavedate str The leavedate of the Broker [optional]
b_broker_tranquillit bool Whether if it's an tranquillit [optional]
b_broker_residentiallicense bool Whether if it's an residentiallicense
b_broker_commerciallicense bool Whether if it's an commerciallicense
b_broker_mortgagelicense bool Whether if it's an mortgagelicense
b_broker_paidbyofficetranquillit bool Whether if it's an paidbyofficetranquillit
dt_broker_fintraccertification str The fintraccertification of the Broker [optional]
b_broker_isactive bool Whether the Broker is active or not
s_contact_firstname str The First name of the contact [optional]
s_contact_lastname str The Last name of the contact [optional]
dt_contact_birthdate str The Birth Date of the contact [optional]
s_email_address str The email address. [optional]
s_phone_e164 str A phone number in E.164 Format [optional]
s_address_civic str The Civic number. [optional]
s_address_street str The Street Name [optional]
s_address_suite str The Suite or appartment number [optional]
s_address_city str The City name [optional]
s_address_zip str The Postal/Zip Code The value must be entered without spaces [optional]
s_province_name_x str The name of the Province in the language of the requester [optional]
s_country_name_x str The name of the Country in the language of the requester [optional]

Example

from eZmaxApi.models.broker_list_element import BrokerListElement

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

# convert the object into a dict
broker_list_element_dict = broker_list_element_instance.to_dict()
# create an instance of BrokerListElement from a dict
broker_list_element_from_dict = BrokerListElement.from_dict(broker_list_element_dict)

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