Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.14 KB

ResourceType.md

File metadata and controls

35 lines (26 loc) · 1.14 KB

ResourceType

Properties

Name Type Description Notes
resource_type str
resource_table str
identifier_key str [optional]
select_columns List[str]
resource_url_template str
is_tags_available bool
relationship_config List[RelationshipConfigItem]

Example

from onelens_backend_client.models.resource_type import ResourceType

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

# convert the object into a dict
resource_type_dict = resource_type_instance.to_dict()
# create an instance of ResourceType from a dict
resource_type_form_dict = resource_type.from_dict(resource_type_dict)

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