RiskAcceptanceProof
Properties
| Name |
Type |
Description |
Notes |
| path |
str |
|
[optional] |
Example
from defectdojo_api_generated.models.risk_acceptance_proof import RiskAcceptanceProof
# TODO update the JSON string below
json = "{}"
# create an instance of RiskAcceptanceProof from a JSON string
risk_acceptance_proof_instance = RiskAcceptanceProof.from_json(json)
# print the JSON string representation of the object
print(RiskAcceptanceProof.to_json())
# convert the object into a dict
risk_acceptance_proof_dict = risk_acceptance_proof_instance.to_dict()
# create an instance of RiskAcceptanceProof from a dict
risk_acceptance_proof_from_dict = RiskAcceptanceProof.from_dict(risk_acceptance_proof_dict)
[Back to Model list] [Back to API list] [Back to README]