Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 978 Bytes

File metadata and controls

29 lines (20 loc) · 978 Bytes

ActivityTypes

Properties

Name Type Description Notes
type str If the author type is `user`, only `conversation:read` is supported. [optional]

Example

from sunshine_conversations_client.model.activity_types import ActivityTypes

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

# convert the object into a dict
activity_types_dict = activity_types_instance.to_dict()
# create an instance of ActivityTypes from a dict
activity_types_from_dict = ActivityTypes.from_dict(activity_types_dict)

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