Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

Universalconnectormanagerv3FileResponse

A file response.

Properties

Name Type Description Notes
file bytearray File bytes. [optional]

Example

from ibm_gdsc_sdk_saas.models.universalconnectormanagerv3_file_response import Universalconnectormanagerv3FileResponse

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

# convert the object into a dict
universalconnectormanagerv3_file_response_dict = universalconnectormanagerv3_file_response_instance.to_dict()
# create an instance of Universalconnectormanagerv3FileResponse from a dict
universalconnectormanagerv3_file_response_from_dict = Universalconnectormanagerv3FileResponse.from_dict(universalconnectormanagerv3_file_response_dict)

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