Other key-value properties provisioned by the user.
Name | Type | Description | Notes |
---|---|---|---|
ref | str | A URI for the Resource, formatted as `/resources/{resourceId}` |
from waylay.services.resources.models.user_resource_properties import UserResourceProperties
# TODO update the JSON string below
json = "{}"
# create an instance of UserResourceProperties from a JSON string
user_resource_properties_instance = UserResourceProperties.from_json(json)
# print the JSON string representation of the object
print UserResourceProperties.to_json()
# convert the object into a dict
user_resource_properties_dict = user_resource_properties_instance.to_dict()
# create an instance of UserResourceProperties from a dict
user_resource_properties_form_dict = user_resource_properties.from_dict(user_resource_properties_dict)