Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

AdvisoryMProblemTypes.md

File metadata and controls

29 lines (20 loc) · 1.03 KB

AdvisoryMProblemTypes

Properties

Name Type Description Notes
descriptions List[AdvisoryPTMDescriptions] [optional]

Example

from vulncheck_sdk.models.advisory_m_problem_types import AdvisoryMProblemTypes

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

# convert the object into a dict
advisory_m_problem_types_dict = advisory_m_problem_types_instance.to_dict()
# create an instance of AdvisoryMProblemTypes from a dict
advisory_m_problem_types_from_dict = AdvisoryMProblemTypes.from_dict(advisory_m_problem_types_dict)

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