Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 945 Bytes

File metadata and controls

34 lines (25 loc) · 945 Bytes

Thread

Properties

Name Type Description Notes
id AmenityId
created_at object
updated_at object
is_active object
merchant_id str
thread_id object

Example

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)

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