Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 847 Bytes

ResourceId.md

File metadata and controls

29 lines (20 loc) · 847 Bytes

ResourceId

Primary identifier of a Resource

Properties

Name Type Description Notes

Example

from waylay.services.resources.models.resource_id import ResourceId

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

# convert the object into a dict
resource_id_dict = resource_id_instance.to_dict()
# create an instance of ResourceId from a dict
resource_id_form_dict = resource_id.from_dict(resource_id_dict)

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