Represents an action that can be performed on a resource based on permissions and resource state
| Name | Type | Description | Notes |
|---|---|---|---|
| href | str | The URL for this action | [optional] |
| fields | List[object] | Fields that can be modified with this action | [optional] |
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)