Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 780 Bytes

File metadata and controls

28 lines (19 loc) · 780 Bytes

AmenityId

Properties

Name Type Description Notes

Example

from wallet.models.amenity_id import AmenityId

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

# convert the object into a dict
amenity_id_dict = amenity_id_instance.to_dict()
# create an instance of AmenityId from a dict
amenity_id_form_dict = amenity_id.from_dict(amenity_id_dict)

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