| Name | Type | Description | Notes |
|---|---|---|---|
| credit | SearchPostItemPrice | [optional] | |
| daily_rent | str | [optional] | |
| floor | int | [optional] | |
| has_elevator | bool | [optional] | |
| has_parking | bool | [optional] | |
| rent | SearchPostItemPrice | [optional] | |
| rooms | str | [optional] | |
| size | int | [optional] | |
| year | int | [optional] |
from kenar_api_client.models.search_post_item_real_estate_fields import SearchPostItemRealEstateFields
# TODO update the JSON string below
json = "{}"
# create an instance of SearchPostItemRealEstateFields from a JSON string
search_post_item_real_estate_fields_instance = SearchPostItemRealEstateFields.from_json(json)
# print the JSON string representation of the object
print(SearchPostItemRealEstateFields.to_json())
# convert the object into a dict
search_post_item_real_estate_fields_dict = search_post_item_real_estate_fields_instance.to_dict()
# create an instance of SearchPostItemRealEstateFields from a dict
search_post_item_real_estate_fields_from_dict = SearchPostItemRealEstateFields.from_dict(search_post_item_real_estate_fields_dict)