| Name |
Type |
Description |
Notes |
| attachment |
AttachmentSchema |
The uploaded attachment object. |
[optional] |
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]