| Name | Type | Description | Notes |
|---|
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)