Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.08 KB

Attachmentupload.md

File metadata and controls

34 lines (25 loc) · 1.08 KB

Attachmentupload

Properties

Name Type Description Notes
hash str [optional]
filename str [optional]
mime str [optional]
extension str [optional]
url str [optional]
team str [optional]

Example

from qase.api_client_v1.models.attachmentupload import Attachmentupload

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

# convert the object into a dict
attachmentupload_dict = attachmentupload_instance.to_dict()
# create an instance of Attachmentupload from a dict
attachmentupload_form_dict = attachmentupload.from_dict(attachmentupload_dict)

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