Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 864 Bytes

ResourceId.md

File metadata and controls

29 lines (21 loc) · 864 Bytes

ResourceId

Properties

Name Type Description Notes
scope str
code str

Example

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 listBack to API listBack to README