LanguageTypeRequest

Properties

Name Type Description Notes
language str [optional]
color str [optional]

Example

from defectdojo_api_generated.models.language_type_request import LanguageTypeRequest

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

# convert the object into a dict
language_type_request_dict = language_type_request_instance.to_dict()
# create an instance of LanguageTypeRequest from a dict
language_type_request_from_dict = LanguageTypeRequest.from_dict(language_type_request_dict)

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