File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ class ModellingKind(Enum):
223223@unique
224224class 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
246248class QualifierKind (Enum ):
You can’t perform that action at this time.
0 commit comments