You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tag name. The resriction is based on the resources which have been assigned to that tag. If no resource has been assigned to the given tag, no access will be possible.
Example
frompfruck_contabo.models.resource_permissions_responseimportResourcePermissionsResponse# TODO update the JSON string belowjson="{}"# create an instance of ResourcePermissionsResponse from a JSON stringresource_permissions_response_instance=ResourcePermissionsResponse.from_json(json)
# print the JSON string representation of the objectprint(ResourcePermissionsResponse.to_json())
# convert the object into a dictresource_permissions_response_dict=resource_permissions_response_instance.to_dict()
# create an instance of ResourcePermissionsResponse from a dictresource_permissions_response_from_dict=ResourcePermissionsResponse.from_dict(resource_permissions_response_dict)