Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

File metadata and controls

29 lines (20 loc) · 1.06 KB

GoalCommentsResponse

Properties

Name Type Description Notes
comments List[GoalCommentsResponseCommentsInner] Array of comment objects for the goal. [optional]

Example

from bamboohr_sdk.models.goal_comments_response import GoalCommentsResponse

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

# convert the object into a dict
goal_comments_response_dict = goal_comments_response_instance.to_dict()
# create an instance of GoalCommentsResponse from a dict
goal_comments_response_from_dict = GoalCommentsResponse.from_dict(goal_comments_response_dict)

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