| Name |
Type |
Description |
Notes |
| binary_content |
bytearray |
File's content as byte array (or a Base64 string) |
|
| name |
str |
Display name of the file |
|
| content_type |
str |
MIME content type |
[optional] |
| size |
int |
Size of your attachment (in bytes). |
[optional] |
from ElasticEmail.models.message_attachment import MessageAttachment
# TODO update the JSON string below
json = "{}"
# create an instance of MessageAttachment from a JSON string
message_attachment_instance = MessageAttachment.from_json(json)
# print the JSON string representation of the object
print(MessageAttachment.to_json())
# convert the object into a dict
message_attachment_dict = message_attachment_instance.to_dict()
# create an instance of MessageAttachment from a dict
message_attachment_from_dict = MessageAttachment.from_dict(message_attachment_dict)
[Back to Model list] [Back to API list] [Back to README]