Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 835 Bytes

Matrix.md

File metadata and controls

30 lines (21 loc) · 835 Bytes

Matrix

Properties

Name Type Description Notes
array List[object] [optional]
dimensions List[int] [optional]

Example

from opcua_webapi.models.matrix import Matrix

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

# convert the object into a dict
matrix_dict = matrix_instance.to_dict()
# create an instance of Matrix from a dict
matrix_from_dict = Matrix.from_dict(matrix_dict)

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