| Name | Type | Description | Notes |
|---|---|---|---|
| id | AmenityId | ||
| created_at | object | ||
| updated_at | object | ||
| is_active | object | ||
| merchant_id | str | ||
| thread_id | object |
from wallet.models.thread import Thread
# TODO update the JSON string below
json = "{}"
# create an instance of Thread from a JSON string
thread_instance = Thread.from_json(json)
# print the JSON string representation of the object
print Thread.to_json()
# convert the object into a dict
thread_dict = thread_instance.to_dict()
# create an instance of Thread from a dict
thread_form_dict = thread.from_dict(thread_dict)