Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

File metadata and controls

29 lines (20 loc) · 1 KB

AttachmentResponse

Properties

Name Type Description Notes
attachment AttachmentSchema The uploaded attachment object. [optional]

Example

from sunshine_conversations_client.model.attachment_response import AttachmentResponse

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

# convert the object into a dict
attachment_response_dict = attachment_response_instance.to_dict()
# create an instance of AttachmentResponse from a dict
attachment_response_from_dict = AttachmentResponse.from_dict(attachment_response_dict)

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