Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

ResourceRelationshipResponse.md

File metadata and controls

32 lines (23 loc) · 1.25 KB

ResourceRelationshipResponse

Resource Relationship Response

Properties

Name Type Description Notes
relationship_type str The relationship type
direction str The relationship direction
resource ResourceCatalog The resource details.

Example

from onelens_backend_client.models.resource_relationship_response import ResourceRelationshipResponse

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

# convert the object into a dict
resource_relationship_response_dict = resource_relationship_response_instance.to_dict()
# create an instance of ResourceRelationshipResponse from a dict
resource_relationship_response_form_dict = resource_relationship_response.from_dict(resource_relationship_response_dict)

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