Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 991 Bytes

ITranslator.md

File metadata and controls

32 lines (23 loc) · 991 Bytes

ITranslator

Properties

Name Type Description Notes
label str [optional] [readonly]
description str [optional] [readonly]
priority int [optional]
key str [optional]

Example

from openapi_client.models.i_translator import ITranslator

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

# convert the object into a dict
i_translator_dict = i_translator_instance.to_dict()
# create an instance of ITranslator from a dict
i_translator_from_dict = ITranslator.from_dict(i_translator_dict)

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