Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.33 KB

File metadata and controls

31 lines (22 loc) · 1.33 KB

TransformedApiGoalActions

Actions that are available to a goal with milestones enabled. This object will not appear on a goal without milestones.

Properties

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]

Example

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)

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