Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

File metadata and controls

30 lines (21 loc) · 1.09 KB

PostResourceVersionResponse

Properties

Name Type Description Notes
url str
pending_record_id str

Example

from uncertainty_engine_resource_client.models.post_resource_version_response import PostResourceVersionResponse

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

# convert the object into a dict
post_resource_version_response_dict = post_resource_version_response_instance.to_dict()
# create an instance of PostResourceVersionResponse from a dict
post_resource_version_response_from_dict = PostResourceVersionResponse.from_dict(post_resource_version_response_dict)

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