Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.34 KB

PenaltyPointsDto.md

File metadata and controls

32 lines (24 loc) · 1.34 KB

PenaltyPointsDto

Penalty points for each severity level. By default neutral is 0, minor is 1, major is 5, critical is 10.

Properties

Name Type Description Notes
neutral SeverityDto [optional]
minor SeverityDto [optional]
major SeverityDto [optional]
critical SeverityDto [optional]

Example

from phrasetms_client.models.penalty_points_dto import PenaltyPointsDto

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

# convert the object into a dict
penalty_points_dto_dict = penalty_points_dto_instance.to_dict()
# create an instance of PenaltyPointsDto from a dict
penalty_points_dto_from_dict = PenaltyPointsDto.from_dict(penalty_points_dto_dict)

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