A Inscriptionnotauthenticated List Element
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_inscription_id | int | The unique ID of the Inscription. | |
| pki_inscriptionnotauthenticated_id | int | The unique ID of the Inscriptionnotauthenticated. | [optional] |
| fki_inscriptiontype_id | int | The unique ID of the Inscriptiontype | |
| s_inscriptiontype_name_x | str | The name of the Inscriptiontype in the language of the requester | |
| fki_inscriptionbuildingtype_id | int | The unique ID of the Inscriptionbuildingtype | |
| s_inscriptionbuildingtype_name_x | str | The name of the Inscriptionbuildingtype in the language of the requester | |
| fki_inscriptioncategory_id | int | The unique ID of the Inscriptioncategory | |
| s_inscriptioncategory_name_x | str | The name of the Inscriptioncategory in the language of the requester | |
| fki_buyercontract_id | int | The unique ID of the Buyercontract | [optional] |
| s_buyercontract_contract | str | The number of the Buyercontract | [optional] |
| e_inscription_step | FieldEInscriptionStep | ||
| e_inscription_type | FieldEInscriptionType | ||
| s_inscription_civicend | str | The address civic end of the Inscription | |
| s_inscription_mls | str | The mls of the Inscription | [optional] |
| s_inscription_contract | str | The sale contract number | [optional] |
| d_inscription_saleprice | str | The saleprice of the Inscription | |
| d_inscription_rentprice | str | The rent price of the Inscription | |
| dt_inscription_date | str | The date of the Inscription | [optional] |
| dt_inscription_expirationdate | str | The expiration date of the Inscription | [optional] |
| dt_inscription_notarydate | str | The notary date of the Inscription | [optional] |
| b_inscription_inspection | bool | Whether the inscription can be acces by an inspector | [optional] |
| b_inscription_isactive | bool | Whether the inscription is active or not | |
| b_inscription_archived | bool | Whether the inscription is archived or not | |
| dt_inscriptionnotauthenticated_notaryscheduledate | str | The notary schedule date of the Inscriptionnotauthenticated | [optional] |
| dt_inscriptionnotauthenticated_transactiondate | str | The transaction date of the Inscriptionnotauthenticated | [optional] |
| dt_inscriptionnotauthenticated_transactiondate_real | str | The real transactiondate of the Inscriptionnotauthenticated | [optional] |
| b_inscriptionnotauthenticated_conditional | bool | Whether the inscriptionnotauthenticated is conditional | [optional] |
| b_inscriptionnotauthenticated_isactive | bool | Whether the inscriptionnotauthenticated is active or not | [optional] |
| b_inscriptionnotauthenticated_draft | bool | Whether the Inscriptionnotauthenticated is a draft or not | [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] |
| 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 | [optional] |
| 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 | [optional] |
| s_inscriptionnotauthenticated_offertopurchasenumber | str | The offer to purchase number of the Inscriptionnotauthenticated | |
| i_inscription_unit | int | The number of unit for the Inscription |
from eZmaxApi.models.inscriptionnotauthenticated_list_element import InscriptionnotauthenticatedListElement
# TODO update the JSON string below
json = "{}"
# create an instance of InscriptionnotauthenticatedListElement from a JSON string
inscriptionnotauthenticated_list_element_instance = InscriptionnotauthenticatedListElement.from_json(json)
# print the JSON string representation of the object
print(InscriptionnotauthenticatedListElement.to_json())
# convert the object into a dict
inscriptionnotauthenticated_list_element_dict = inscriptionnotauthenticated_list_element_instance.to_dict()
# create an instance of InscriptionnotauthenticatedListElement from a dict
inscriptionnotauthenticated_list_element_from_dict = InscriptionnotauthenticatedListElement.from_dict(inscriptionnotauthenticated_list_element_dict)