LanguageRequest
Properties
| Name |
Type |
Description |
Notes |
| files |
int |
|
[optional] |
| blank |
int |
|
[optional] |
| comment |
int |
|
[optional] |
| code |
int |
|
[optional] |
| language |
int |
|
[optional] |
| product |
int |
|
[optional] |
| user |
int |
|
[optional] |
Example
from defectdojo_api_generated.models.language_request import LanguageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of LanguageRequest from a JSON string
language_request_instance = LanguageRequest.from_json(json)
# print the JSON string representation of the object
print(LanguageRequest.to_json())
# convert the object into a dict
language_request_dict = language_request_instance.to_dict()
# create an instance of LanguageRequest from a dict
language_request_from_dict = LanguageRequest.from_dict(language_request_dict)
[Back to Model list] [Back to API list] [Back to README]