Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.19 KB

File metadata and controls

31 lines (23 loc) · 1.19 KB

MentionMessageWrapper

The mention message parameters.

Properties

Name Type Description Notes
action_link ActionLinkConfig [optional]
emails List[str] A list of emails that will receive the mention message. [optional]
message str The mention message. [optional]

Example

from docspace_api_sdk.models.mention_message_wrapper import MentionMessageWrapper

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

# convert the object into a dict
mention_message_wrapper_dict = mention_message_wrapper_instance.to_dict()
# create an instance of MentionMessageWrapper from a dict
mention_message_wrapper_from_dict = MentionMessageWrapper.from_dict(mention_message_wrapper_dict)

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