Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.25 KB

File metadata and controls

30 lines (21 loc) · 1.25 KB

ConversationListFilter

Properties

Name Type Description Notes
user_id str The user's id. One of `userId` or `userExternalId` is required, but not both. [optional]
user_external_id str The external Id of the user. One of `userId` or `userExternalId` is required, but not both. [optional]

Example

from sunshine_conversations_client.model.conversation_list_filter import ConversationListFilter

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

# convert the object into a dict
conversation_list_filter_dict = conversation_list_filter_instance.to_dict()
# create an instance of ConversationListFilter from a dict
conversation_list_filter_from_dict = ConversationListFilter.from_dict(conversation_list_filter_dict)

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