SonarqubeIssue

Properties

Name Type Description Notes
id int [optional] [readonly]
key str SonarQube issue key [optional]
status str SonarQube issue status [optional]
type str SonarQube issue type [optional]

Example

from defectdojo_api_generated.models.sonarqube_issue import SonarqubeIssue

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

# convert the object into a dict
sonarqube_issue_dict = sonarqube_issue_instance.to_dict()
# create an instance of SonarqubeIssue from a dict
sonarqube_issue_from_dict = SonarqubeIssue.from_dict(sonarqube_issue_dict)

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