MCPcopy Create free account
hub / github.com/FreeOpcUa/python-opcua / Field

Class Field

opcua/common/structures.py:128–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126
127
128class Field(object):
129 def __init__(self, name):
130 self.name = name
131 self.uatype = None
132 self.value = None
133 self.array = False
134
135 def __str__(self):
136 return "Field(name={}, uatype={}".format(self.name, self.uatype)
137 __repr__ = __str__
138
139
140class StructGenerator(object):

Callers 1

_make_modelMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected