Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
46 lines (38 loc) · 1.51 KB

File metadata and controls

46 lines (38 loc) · 1.51 KB

Attachment

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
name str
url str [optional]
type str [optional]
private bool [optional]
size str [optional]
field str [optional]
created_at str [optional]
created_by_id str [optional]
created_by_name str [optional]
contents str [optional]
role str [optional]
storage str [optional]
storage_file_path str [optional]
storage_thumb_path str [optional]
var_global bool [optional]
md5 str [optional]
paths_data object [optional]

Example

from clientapi_atrocore.models.attachment import Attachment

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

# convert the object into a dict
attachment_dict = attachment_instance.to_dict()
# create an instance of Attachment from a dict
attachment_form_dict = attachment.from_dict(attachment_dict)

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