Actions that are available to a goal with milestones enabled. This object will not appear on a goal without milestones.
| Name | Type | Description | Notes |
|---|---|---|---|
| can_edit_goal_progress_bar | bool | Can the user edit the progress bar of this goal. | [optional] |
| can_edit_goal_milestone_progress_bar | bool | can the user edit the progress of a milestone in this goal. | [optional] |
from bamboohr_sdk.models.transformed_api_goal_actions import TransformedApiGoalActions
# TODO update the JSON string below
json = "{}"
# create an instance of TransformedApiGoalActions from a JSON string
transformed_api_goal_actions_instance = TransformedApiGoalActions.from_json(json)
# print the JSON string representation of the object
print(TransformedApiGoalActions.to_json())
# convert the object into a dict
transformed_api_goal_actions_dict = transformed_api_goal_actions_instance.to_dict()
# create an instance of TransformedApiGoalActions from a dict
transformed_api_goal_actions_from_dict = TransformedApiGoalActions.from_dict(transformed_api_goal_actions_dict)