ModificationInfo

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
modification_timedatetime[optional]
update_typeintLink to specification.[optional]
user_namestr[optional]

Example

from opcua_webapi.models.modification_info import ModificationInfo

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

# convert the object into a dict
modification_info_dict = modification_info_instance.to_dict()
# create an instance of ModificationInfo from a dict
modification_info_from_dict = ModificationInfo.from_dict(modification_info_dict)

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