Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

PostResourceVersionRequest

Properties

Name Type Description Notes
resource_version_record ResourceVersionRecordInput
resource_file_extension str

Example

from uncertainty_engine_resource_client.models.post_resource_version_request import PostResourceVersionRequest

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

# convert the object into a dict
post_resource_version_request_dict = post_resource_version_request_instance.to_dict()
# create an instance of PostResourceVersionRequest from a dict
post_resource_version_request_from_dict = PostResourceVersionRequest.from_dict(post_resource_version_request_dict)

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