Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.38 KB

File metadata and controls

30 lines (21 loc) · 1.38 KB

ApplicationDetailsQuestionsAndAnswersInnerAnswer

Properties

Name Type Description Notes
id int Answer ID [optional]
label str Answer text [optional]

Example

from bamboohr_sdk.models.application_details_questions_and_answers_inner_answer import ApplicationDetailsQuestionsAndAnswersInnerAnswer

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

# convert the object into a dict
application_details_questions_and_answers_inner_answer_dict = application_details_questions_and_answers_inner_answer_instance.to_dict()
# create an instance of ApplicationDetailsQuestionsAndAnswersInnerAnswer from a dict
application_details_questions_and_answers_inner_answer_from_dict = ApplicationDetailsQuestionsAndAnswersInnerAnswer.from_dict(application_details_questions_and_answers_inner_answer_dict)

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