Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

ApiProblemTypeExtended.md

File metadata and controls

29 lines (20 loc) · 1.05 KB

ApiProblemTypeExtended

Properties

Name Type Description Notes
problemtype_data List[ApiProblemTypeDataExtended] [optional]

Example

from vulncheck_sdk.models.api_problem_type_extended import ApiProblemTypeExtended

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

# convert the object into a dict
api_problem_type_extended_dict = api_problem_type_extended_instance.to_dict()
# create an instance of ApiProblemTypeExtended from a dict
api_problem_type_extended_from_dict = ApiProblemTypeExtended.from_dict(api_problem_type_extended_dict)

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