Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

AvailableAction

Represents an action that can be performed on a resource based on permissions and resource state

Properties

Name Type Description Notes
href str The URL for this action [optional]
fields List[object] Fields that can be modified with this action [optional]

Example

from bamboohr_sdk.models.available_action import AvailableAction

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

# convert the object into a dict
available_action_dict = available_action_instance.to_dict()
# create an instance of AvailableAction from a dict
available_action_from_dict = AvailableAction.from_dict(available_action_dict)

[Back to Model list] [Back to API list] [Back to README]