Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.29 KB

File metadata and controls

29 lines (22 loc) · 1.29 KB

FindConversationsDto

Properties

Name Type Description Notes
jobs List[UidReference]
since str [optional]
include_deleted bool Default: false [optional]

Example

from phrasetms_client.models.find_conversations_dto import FindConversationsDto

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

# convert the object into a dict
find_conversations_dto_dict = find_conversations_dto_instance.to_dict()
# create an instance of FindConversationsDto from a dict
find_conversations_dto_from_dict = FindConversationsDto.from_dict(find_conversations_dto_dict)

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