Skip to content

Commit e85a0ed

Browse files
authored
add Role asset (#69)
1 parent 368a6b7 commit e85a0ed

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

sdk/basyx/aas/model/base.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class ModellingKind(Enum):
223223
@unique
224224
class AssetKind(Enum):
225225
"""
226-
Enumeration for denoting whether an asset is a type asset or an instance asset or whether this kind of
226+
Enumeration for denoting whether an asset is a type asset or an instance asset or role asset or whether this kind of
227227
classification is not applicable.
228228
229229
.. note::
@@ -235,12 +235,14 @@ class AssetKind(Enum):
235235
236236
:cvar TYPE: Type asset
237237
:cvar INSTANCE: Instance asset
238-
:cvar NOT_APPLICABLE: Neither a type asset nor an instance asset
238+
:cvar ROLE: Role asset
239+
:cvar NOT_APPLICABLE: Neither a type asset nor an instance asset nor a role asset
239240
"""
240241

241242
TYPE = 0
242243
INSTANCE = 1
243-
NOT_APPLICABLE = 2
244+
ROLE = 2
245+
NOT_APPLICABLE = 3
244246

245247

246248
class QualifierKind(Enum):

0 commit comments

Comments
 (0)