Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.17 KB

AccessControlledAction.md

File metadata and controls

31 lines (23 loc) · 1.17 KB

AccessControlledAction

Properties

Name Type Description Notes
description str
action ActionId
limited_set List[IdSelectorDefinition] [optional]
links List[Link] [optional]

Example

from finbourne_access.models.access_controlled_action import AccessControlledAction

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

# convert the object into a dict
access_controlled_action_dict = access_controlled_action_instance.to_dict()
# create an instance of AccessControlledAction from a dict
access_controlled_action_form_dict = access_controlled_action.from_dict(access_controlled_action_dict)

Back to Model listBack to API listBack to README