Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

AttachmentUploadsResponse.md

File metadata and controls

30 lines (21 loc) · 1.09 KB

AttachmentUploadsResponse

Properties

Name Type Description Notes
status bool [optional]
result List[Attachmentupload] [optional]

Example

from qaseio.models.attachment_uploads_response import AttachmentUploadsResponse

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

# convert the object into a dict
attachment_uploads_response_dict = attachment_uploads_response_instance.to_dict()
# create an instance of AttachmentUploadsResponse from a dict
attachment_uploads_response_form_dict = attachment_uploads_response.from_dict(attachment_uploads_response_dict)

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