Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

EditAttachmentOptions

EditAttachmentOptions options for editing attachments

Properties

Name Type Description Notes
browser_download_url str (Can only be set if existing attachment is of external type) [optional]
name str [optional]

Example

from openapi_client.models.edit_attachment_options import EditAttachmentOptions

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

# convert the object into a dict
edit_attachment_options_dict = edit_attachment_options_instance.to_dict()
# create an instance of EditAttachmentOptions from a dict
edit_attachment_options_from_dict = EditAttachmentOptions.from_dict(edit_attachment_options_dict)

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