Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.3 KB

GetResourceWithRelationResponse.md

File metadata and controls

31 lines (22 loc) · 1.3 KB

GetResourceWithRelationResponse

Get Resource With Relations

Properties

Name Type Description Notes
resource ResourceCatalog The resource details.
relationships List[ResourceRelationshipResponse] [optional]

Example

from onelens_backend_client.models.get_resource_with_relation_response import GetResourceWithRelationResponse

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

# convert the object into a dict
get_resource_with_relation_response_dict = get_resource_with_relation_response_instance.to_dict()
# create an instance of GetResourceWithRelationResponse from a dict
get_resource_with_relation_response_form_dict = get_resource_with_relation_response.from_dict(get_resource_with_relation_response_dict)

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