EditAttachmentOptions options for editing attachments
| Name | Type | Description | Notes |
|---|---|---|---|
| browser_download_url | str | (Can only be set if existing attachment is of external type) | [optional] |
| name | str | [optional] |
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)