RawFile

Properties

Name Type Description Notes
file str [optional]

Example

from defectdojo_api_generated.models.raw_file import RawFile

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

# convert the object into a dict
raw_file_dict = raw_file_instance.to_dict()
# create an instance of RawFile from a dict
raw_file_from_dict = RawFile.from_dict(raw_file_dict)

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