Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

SearchPostItemVehiclesFields

Properties

Name Type Description Notes
custom_post_subtitle str [optional]
installment_sale str [optional]
usage str [optional]

Example

from kenar_api_client.models.search_post_item_vehicles_fields import SearchPostItemVehiclesFields

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

# convert the object into a dict
search_post_item_vehicles_fields_dict = search_post_item_vehicles_fields_instance.to_dict()
# create an instance of SearchPostItemVehiclesFields from a dict
search_post_item_vehicles_fields_from_dict = SearchPostItemVehiclesFields.from_dict(search_post_item_vehicles_fields_dict)

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