LocalizedText

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
localestr[optional]
textstr[optional]

Example

from opcua_webapi.models.localized_text import LocalizedText

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

# convert the object into a dict
localized_text_dict = localized_text_instance.to_dict()
# create an instance of LocalizedText from a dict
localized_text_from_dict = LocalizedText.from_dict(localized_text_dict)

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