UploadFileResponse¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
file_path |
str |
||
metadata |
Dict[str, object] |
[可选] |
示例¶
from gs_interactive.models.upload_file_response import UploadFileResponse
# TODO update the JSON string below
json = "{}"
# create an instance of UploadFileResponse from a JSON string
upload_file_response_instance = UploadFileResponse.from_json(json)
# print the JSON string representation of the object
print UploadFileResponse.to_json()
# convert the object into a dict
upload_file_response_dict = upload_file_response_instance.to_dict()
# create an instance of UploadFileResponse from a dict
upload_file_response_form_dict = upload_file_response.from_dict(upload_file_response_dict)