Fix keys order for unknown values

This commit is contained in:
barsdeveloper
2022-04-12 23:07:06 +02:00
parent f71edf1a3c
commit f29119809f
4 changed files with 59 additions and 3 deletions

View File

@@ -23,6 +23,7 @@ export default class ObjectEntity extends IEntity {
NodePosX: IntegerEntity,
NodePosY: IntegerEntity,
AdvancedPinDisplay: new TypeInitialization(IdentifierEntity, false, null),
EnabledState: new TypeInitialization(IdentifierEntity, false, null),
NodeGuid: GuidEntity,
ErrorType: new TypeInitialization(IntegerEntity, false),
ErrorMsg: new TypeInitialization(String, false, ""),
@@ -43,6 +44,7 @@ export default class ObjectEntity extends IEntity {
/** @type {IntegerEntity} */ this.NodePosX
/** @type {IntegerEntity} */ this.NodePosY
/** @type {IdentifierEntity} */ this.AdvancedPinDisplay
/** @type {IdentifierEntity} */ this.EnabledState
/** @type {GuidEntity} */ this.NodeGuid
/** @type {IntegerEntity} */ this.ErrorType
/** @type {String} */ this.ErrorMsg