QuestionnaireGeneralSurvey

Properties

Name Type Description Notes
id int [optional] [readonly]
survey QuestionnaireEngagementSurvey [optional]
num_responses int [optional]
generated datetime [optional] [readonly]
expiration datetime [optional]

Example

from defectdojo_api_generated.models.questionnaire_general_survey import QuestionnaireGeneralSurvey

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

# convert the object into a dict
questionnaire_general_survey_dict = questionnaire_general_survey_instance.to_dict()
# create an instance of QuestionnaireGeneralSurvey from a dict
questionnaire_general_survey_from_dict = QuestionnaireGeneralSurvey.from_dict(questionnaire_general_survey_dict)

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