Language
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| files |
int |
|
[optional] |
| blank |
int |
|
[optional] |
| comment |
int |
|
[optional] |
| code |
int |
|
[optional] |
| created |
datetime |
|
[optional] [readonly] |
| language |
int |
|
[optional] |
| product |
int |
|
[optional] |
| user |
int |
|
[optional] |
| prefetch |
LanguagePrefetch |
|
[optional] |
Example
from defectdojo_api_generated.models.language import Language
# TODO update the JSON string below
json = "{}"
# create an instance of Language from a JSON string
language_instance = Language.from_json(json)
# print the JSON string representation of the object
print(Language.to_json())
# convert the object into a dict
language_dict = language_instance.to_dict()
# create an instance of Language from a dict
language_from_dict = Language.from_dict(language_dict)
[Back to Model list] [Back to API list] [Back to README]