Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 988 Bytes

File metadata and controls

31 lines (22 loc) · 988 Bytes

MessageFileData

Properties

Name Type Description Notes
link str [optional]
name str [optional]
size_bytes str [optional]

Example

from kenar_api_client.models.message_file_data import MessageFileData

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

# convert the object into a dict
message_file_data_dict = message_file_data_instance.to_dict()
# create an instance of MessageFileData from a dict
message_file_data_from_dict = MessageFileData.from_dict(message_file_data_dict)

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