Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.08 KB

SharedLinkBodyEmail.md

File metadata and controls

31 lines (23 loc) · 1.08 KB

SharedLinkBodyEmail

Properties

Name Type Description Notes
client str [optional]
message str [optional]
locale str [optional]
recipient_emails List[str] [optional]

Example

from alfresco_core_api_client.models.shared_link_body_email import SharedLinkBodyEmail

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

# convert the object into a dict
shared_link_body_email_dict = shared_link_body_email_instance.to_dict()
# create an instance of SharedLinkBodyEmail from a dict
shared_link_body_email_form_dict = shared_link_body_email.from_dict(shared_link_body_email_dict)

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