Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

PostGoalRequestMilestonesInner

Properties

Name Type Description Notes
title str The title of the milestone [optional]

Example

from bamboohr_sdk.models.post_goal_request_milestones_inner import PostGoalRequestMilestonesInner

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

# convert the object into a dict
post_goal_request_milestones_inner_dict = post_goal_request_milestones_inner_instance.to_dict()
# create an instance of PostGoalRequestMilestonesInner from a dict
post_goal_request_milestones_inner_from_dict = PostGoalRequestMilestonesInner.from_dict(post_goal_request_milestones_inner_dict)

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