Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 917 Bytes

AdvisoryAward.md

File metadata and controls

30 lines (21 loc) · 917 Bytes

AdvisoryAward

Properties

Name Type Description Notes
amount str [optional]
currency str [optional]

Example

from vulncheck_sdk.models.advisory_award import AdvisoryAward

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

# convert the object into a dict
advisory_award_dict = advisory_award_instance.to_dict()
# create an instance of AdvisoryAward from a dict
advisory_award_from_dict = AdvisoryAward.from_dict(advisory_award_dict)

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