Name |
Type |
Description |
Notes |
scope |
str |
|
|
code |
str |
|
|
from finbourne_horizon.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