node-opcua-types 2.72.2 → 2.73.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // --------- This code has been automatically generated !!! 2022-07-12T11:52:31.681Z
1
+ // --------- This code has been automatically generated !!! 2022-08-08T13:27:16.527Z
2
2
  /**
3
3
  * @module node-opcua-types
4
4
  */
@@ -92,7 +92,7 @@ const schemaEUInformation = buildStructuredType({
92
92
  {
93
93
  name: "namespaceUri",
94
94
 
95
- fieldType: "UAString",
95
+ fieldType: "String",
96
96
  },
97
97
  {
98
98
  name: "unitId",
@@ -158,7 +158,7 @@ export class EUInformation extends ExtensionObject {
158
158
  }
159
159
  public encode(stream: OutputBinaryStream): void {
160
160
  /* NEEDED */ super.encode(stream);
161
- encodeUAString(this.namespaceUri, stream);
161
+ encodeString(this.namespaceUri, stream);
162
162
  encodeInt32(this.unitId, stream);
163
163
  encodeLocalizedText(this.displayName, stream);
164
164
  encodeLocalizedText(this.description, stream);
@@ -166,7 +166,7 @@ export class EUInformation extends ExtensionObject {
166
166
  public decode(stream: BinaryStream): void {
167
167
  // call base class implementation first
168
168
  /* NEEDED !!! */ super.decode(stream);
169
- this.namespaceUri = decodeUAString(stream, this.namespaceUri);
169
+ this.namespaceUri = decodeString(stream, this.namespaceUri);
170
170
  this.unitId = decodeInt32(stream, this.unitId);
171
171
  this.displayName = decodeLocalizedText(stream, this.displayName);
172
172
  this.description = decodeLocalizedText(stream, this.description);
@@ -566,7 +566,7 @@ const schemaRequestHeader = buildStructuredType({
566
566
  {
567
567
  name: "auditEntryId",
568
568
 
569
- fieldType: "UAString",
569
+ fieldType: "String",
570
570
  },
571
571
  {
572
572
  name: "timeoutHint",
@@ -646,7 +646,7 @@ export class RequestHeader extends ExtensionObject {
646
646
  encodeDateTime(this.timestamp, stream);
647
647
  encodeUInt32(this.requestHandle, stream);
648
648
  encodeUInt32(this.returnDiagnostics, stream);
649
- encodeUAString(this.auditEntryId, stream);
649
+ encodeString(this.auditEntryId, stream);
650
650
  encodeUInt32(this.timeoutHint, stream);
651
651
  encodeExtensionObject(this.additionalHeader, stream);
652
652
  }
@@ -657,7 +657,7 @@ export class RequestHeader extends ExtensionObject {
657
657
  this.timestamp = decodeDateTime(stream, this.timestamp);
658
658
  this.requestHandle = decodeUInt32(stream, this.requestHandle);
659
659
  this.returnDiagnostics = decodeUInt32(stream, this.returnDiagnostics);
660
- this.auditEntryId = decodeUAString(stream, this.auditEntryId);
660
+ this.auditEntryId = decodeString(stream, this.auditEntryId);
661
661
  this.timeoutHint = decodeUInt32(stream, this.timeoutHint);
662
662
  this.additionalHeader = decodeExtensionObject(stream, this.additionalHeader);
663
663
  }
@@ -677,7 +677,7 @@ const schemaSignatureData = buildStructuredType({
677
677
  {
678
678
  name: "algorithm",
679
679
 
680
- fieldType: "UAString",
680
+ fieldType: "String",
681
681
  },
682
682
  {
683
683
  name: "signature",
@@ -723,13 +723,13 @@ export class SignatureData extends ExtensionObject {
723
723
  }
724
724
  public encode(stream: OutputBinaryStream): void {
725
725
  /* NEEDED */ super.encode(stream);
726
- encodeUAString(this.algorithm, stream);
726
+ encodeString(this.algorithm, stream);
727
727
  encodeByteString(this.signature, stream);
728
728
  }
729
729
  public decode(stream: BinaryStream): void {
730
730
  // call base class implementation first
731
731
  /* NEEDED !!! */ super.decode(stream);
732
- this.algorithm = decodeUAString(stream, this.algorithm);
732
+ this.algorithm = decodeString(stream, this.algorithm);
733
733
  this.signature = decodeByteString(stream, this.signature);
734
734
  }
735
735
  public get schema(): StructuredTypeSchema { return schemaSignatureData; }
@@ -835,7 +835,7 @@ const schemaActivateSessionRequest = buildStructuredType({
835
835
  {
836
836
  name: "localeIds",
837
837
 
838
- fieldType: "UAString",
838
+ fieldType: "String",
839
839
  isArray: true
840
840
  },
841
841
  {
@@ -914,7 +914,7 @@ export class ActivateSessionRequest extends ExtensionObject {
914
914
  this.requestHeader.encode(stream);
915
915
  this.clientSignature.encode(stream);
916
916
  encodeArray(this.clientSoftwareCertificates, stream, (obj, stream1) => { obj.encode(stream1); });
917
- encodeArray(this.localeIds, stream, encodeUAString);
917
+ encodeArray(this.localeIds, stream, encodeString);
918
918
  encodeExtensionObject(this.userIdentityToken, stream);
919
919
  this.userTokenSignature.encode(stream);
920
920
  }
@@ -928,7 +928,7 @@ export class ActivateSessionRequest extends ExtensionObject {
928
928
  obj.decode(stream1);
929
929
  return obj;
930
930
  });
931
- this.localeIds = decodeArray(stream, decodeUAString);
931
+ this.localeIds = decodeArray(stream, decodeString);
932
932
  this.userIdentityToken = decodeExtensionObject(stream, this.userIdentityToken);
933
933
  this.userTokenSignature.decode(stream);
934
934
  }
@@ -968,7 +968,7 @@ const schemaResponseHeader = buildStructuredType({
968
968
  {
969
969
  name: "stringTable",
970
970
 
971
- fieldType: "UAString",
971
+ fieldType: "String",
972
972
  isArray: true
973
973
  },
974
974
  {
@@ -1039,7 +1039,7 @@ export class ResponseHeader extends ExtensionObject {
1039
1039
  encodeUInt32(this.requestHandle, stream);
1040
1040
  encodeStatusCode(this.serviceResult, stream);
1041
1041
  encodeDiagnosticInfo(this.serviceDiagnostics, stream);
1042
- encodeArray(this.stringTable, stream, encodeUAString);
1042
+ encodeArray(this.stringTable, stream, encodeString);
1043
1043
  encodeExtensionObject(this.additionalHeader, stream);
1044
1044
  }
1045
1045
  public decode(stream: BinaryStream): void {
@@ -1049,7 +1049,7 @@ export class ResponseHeader extends ExtensionObject {
1049
1049
  this.requestHandle = decodeUInt32(stream, this.requestHandle);
1050
1050
  this.serviceResult = decodeStatusCode(stream, this.serviceResult);
1051
1051
  this.serviceDiagnostics = decodeDiagnosticInfo(stream, this.serviceDiagnostics);
1052
- this.stringTable = decodeArray(stream, decodeUAString);
1052
+ this.stringTable = decodeArray(stream, decodeString);
1053
1053
  this.additionalHeader = decodeExtensionObject(stream, this.additionalHeader);
1054
1054
  }
1055
1055
  public get schema(): StructuredTypeSchema { return schemaResponseHeader; }
@@ -1587,12 +1587,12 @@ const schemaAddReferencesItem = buildStructuredType({
1587
1587
  {
1588
1588
  name: "isForward",
1589
1589
 
1590
- fieldType: "UABoolean",
1590
+ fieldType: "Boolean",
1591
1591
  },
1592
1592
  {
1593
1593
  name: "targetServerUri",
1594
1594
 
1595
- fieldType: "UAString",
1595
+ fieldType: "String",
1596
1596
  },
1597
1597
  {
1598
1598
  name: "targetNodeId",
@@ -1665,8 +1665,8 @@ export class AddReferencesItem extends ExtensionObject {
1665
1665
  /* NEEDED */ super.encode(stream);
1666
1666
  encodeNodeId(this.sourceNodeId, stream);
1667
1667
  encodeNodeId(this.referenceTypeId, stream);
1668
- encodeUABoolean(this.isForward, stream);
1669
- encodeUAString(this.targetServerUri, stream);
1668
+ encodeBoolean(this.isForward, stream);
1669
+ encodeString(this.targetServerUri, stream);
1670
1670
  encodeExpandedNodeId(this.targetNodeId, stream);
1671
1671
  encodeNodeClass(this.targetNodeClass, stream);
1672
1672
  }
@@ -1675,8 +1675,8 @@ export class AddReferencesItem extends ExtensionObject {
1675
1675
  /* NEEDED !!! */ super.decode(stream);
1676
1676
  this.sourceNodeId = decodeNodeId(stream, this.sourceNodeId);
1677
1677
  this.referenceTypeId = decodeNodeId(stream, this.referenceTypeId);
1678
- this.isForward = decodeUABoolean(stream, this.isForward);
1679
- this.targetServerUri = decodeUAString(stream, this.targetServerUri);
1678
+ this.isForward = decodeBoolean(stream, this.isForward);
1679
+ this.targetServerUri = decodeString(stream, this.targetServerUri);
1680
1680
  this.targetNodeId = decodeExpandedNodeId(stream, this.targetNodeId);
1681
1681
  this.targetNodeClass = decodeNodeClass(stream, this.targetNodeClass);
1682
1682
  }
@@ -2011,12 +2011,12 @@ const schemaAggregateConfiguration = buildStructuredType({
2011
2011
  {
2012
2012
  name: "useServerCapabilitiesDefaults",
2013
2013
 
2014
- fieldType: "UABoolean",
2014
+ fieldType: "Boolean",
2015
2015
  },
2016
2016
  {
2017
2017
  name: "treatUncertainAsBad",
2018
2018
 
2019
- fieldType: "UABoolean",
2019
+ fieldType: "Boolean",
2020
2020
  },
2021
2021
  {
2022
2022
  name: "percentDataBad",
@@ -2031,7 +2031,7 @@ const schemaAggregateConfiguration = buildStructuredType({
2031
2031
  {
2032
2032
  name: "useSlopedExtrapolation",
2033
2033
 
2034
- fieldType: "UABoolean",
2034
+ fieldType: "Boolean",
2035
2035
  },
2036
2036
  ]
2037
2037
  });
@@ -2087,20 +2087,20 @@ export class AggregateConfiguration extends ExtensionObject {
2087
2087
  }
2088
2088
  public encode(stream: OutputBinaryStream): void {
2089
2089
  /* NEEDED */ super.encode(stream);
2090
- encodeUABoolean(this.useServerCapabilitiesDefaults, stream);
2091
- encodeUABoolean(this.treatUncertainAsBad, stream);
2090
+ encodeBoolean(this.useServerCapabilitiesDefaults, stream);
2091
+ encodeBoolean(this.treatUncertainAsBad, stream);
2092
2092
  encodeByte(this.percentDataBad, stream);
2093
2093
  encodeByte(this.percentDataGood, stream);
2094
- encodeUABoolean(this.useSlopedExtrapolation, stream);
2094
+ encodeBoolean(this.useSlopedExtrapolation, stream);
2095
2095
  }
2096
2096
  public decode(stream: BinaryStream): void {
2097
2097
  // call base class implementation first
2098
2098
  /* NEEDED !!! */ super.decode(stream);
2099
- this.useServerCapabilitiesDefaults = decodeUABoolean(stream, this.useServerCapabilitiesDefaults);
2100
- this.treatUncertainAsBad = decodeUABoolean(stream, this.treatUncertainAsBad);
2099
+ this.useServerCapabilitiesDefaults = decodeBoolean(stream, this.useServerCapabilitiesDefaults);
2100
+ this.treatUncertainAsBad = decodeBoolean(stream, this.treatUncertainAsBad);
2101
2101
  this.percentDataBad = decodeByte(stream, this.percentDataBad);
2102
2102
  this.percentDataGood = decodeByte(stream, this.percentDataGood);
2103
- this.useSlopedExtrapolation = decodeUABoolean(stream, this.useSlopedExtrapolation);
2103
+ this.useSlopedExtrapolation = decodeBoolean(stream, this.useSlopedExtrapolation);
2104
2104
  }
2105
2105
  public get schema(): StructuredTypeSchema { return schemaAggregateConfiguration; }
2106
2106
  }
@@ -2464,12 +2464,12 @@ const schemaAnnotation = buildStructuredType({
2464
2464
  {
2465
2465
  name: "message",
2466
2466
 
2467
- fieldType: "UAString",
2467
+ fieldType: "String",
2468
2468
  },
2469
2469
  {
2470
2470
  name: "userName",
2471
2471
 
2472
- fieldType: "UAString",
2472
+ fieldType: "String",
2473
2473
  },
2474
2474
  {
2475
2475
  name: "annotationTime",
@@ -2520,15 +2520,15 @@ export class Annotation extends ExtensionObject {
2520
2520
  }
2521
2521
  public encode(stream: OutputBinaryStream): void {
2522
2522
  /* NEEDED */ super.encode(stream);
2523
- encodeUAString(this.message, stream);
2524
- encodeUAString(this.userName, stream);
2523
+ encodeString(this.message, stream);
2524
+ encodeString(this.userName, stream);
2525
2525
  encodeDateTime(this.annotationTime, stream);
2526
2526
  }
2527
2527
  public decode(stream: BinaryStream): void {
2528
2528
  // call base class implementation first
2529
2529
  /* NEEDED !!! */ super.decode(stream);
2530
- this.message = decodeUAString(stream, this.message);
2531
- this.userName = decodeUAString(stream, this.userName);
2530
+ this.message = decodeString(stream, this.message);
2531
+ this.userName = decodeString(stream, this.userName);
2532
2532
  this.annotationTime = decodeDateTime(stream, this.annotationTime);
2533
2533
  }
2534
2534
  public get schema(): StructuredTypeSchema { return schemaAnnotation; }
@@ -2547,7 +2547,7 @@ const schemaUserIdentityToken = buildStructuredType({
2547
2547
  {
2548
2548
  name: "policyId",
2549
2549
 
2550
- fieldType: "UAString",
2550
+ fieldType: "String",
2551
2551
  },
2552
2552
  ]
2553
2553
  });
@@ -2583,12 +2583,12 @@ export class UserIdentityToken extends ExtensionObject {
2583
2583
  }
2584
2584
  public encode(stream: OutputBinaryStream): void {
2585
2585
  /* NEEDED */ super.encode(stream);
2586
- encodeUAString(this.policyId, stream);
2586
+ encodeString(this.policyId, stream);
2587
2587
  }
2588
2588
  public decode(stream: BinaryStream): void {
2589
2589
  // call base class implementation first
2590
2590
  /* NEEDED !!! */ super.decode(stream);
2591
- this.policyId = decodeUAString(stream, this.policyId);
2591
+ this.policyId = decodeString(stream, this.policyId);
2592
2592
  }
2593
2593
  public get schema(): StructuredTypeSchema { return schemaUserIdentityToken; }
2594
2594
  }
@@ -2680,12 +2680,12 @@ const schemaApplicationDescription = buildStructuredType({
2680
2680
  {
2681
2681
  name: "applicationUri",
2682
2682
 
2683
- fieldType: "UAString",
2683
+ fieldType: "String",
2684
2684
  },
2685
2685
  {
2686
2686
  name: "productUri",
2687
2687
 
2688
- fieldType: "UAString",
2688
+ fieldType: "String",
2689
2689
  },
2690
2690
  {
2691
2691
  name: "applicationName",
@@ -2700,17 +2700,17 @@ const schemaApplicationDescription = buildStructuredType({
2700
2700
  {
2701
2701
  name: "gatewayServerUri",
2702
2702
 
2703
- fieldType: "UAString",
2703
+ fieldType: "String",
2704
2704
  },
2705
2705
  {
2706
2706
  name: "discoveryProfileUri",
2707
2707
 
2708
- fieldType: "UAString",
2708
+ fieldType: "String",
2709
2709
  },
2710
2710
  {
2711
2711
  name: "discoveryUrls",
2712
2712
 
2713
- fieldType: "UAString",
2713
+ fieldType: "String",
2714
2714
  isArray: true
2715
2715
  },
2716
2716
  ]
@@ -2777,24 +2777,24 @@ export class ApplicationDescription extends ExtensionObject {
2777
2777
  }
2778
2778
  public encode(stream: OutputBinaryStream): void {
2779
2779
  /* NEEDED */ super.encode(stream);
2780
- encodeUAString(this.applicationUri, stream);
2781
- encodeUAString(this.productUri, stream);
2780
+ encodeString(this.applicationUri, stream);
2781
+ encodeString(this.productUri, stream);
2782
2782
  encodeLocalizedText(this.applicationName, stream);
2783
2783
  encodeApplicationType(this.applicationType, stream);
2784
- encodeUAString(this.gatewayServerUri, stream);
2785
- encodeUAString(this.discoveryProfileUri, stream);
2786
- encodeArray(this.discoveryUrls, stream, encodeUAString);
2784
+ encodeString(this.gatewayServerUri, stream);
2785
+ encodeString(this.discoveryProfileUri, stream);
2786
+ encodeArray(this.discoveryUrls, stream, encodeString);
2787
2787
  }
2788
2788
  public decode(stream: BinaryStream): void {
2789
2789
  // call base class implementation first
2790
2790
  /* NEEDED !!! */ super.decode(stream);
2791
- this.applicationUri = decodeUAString(stream, this.applicationUri);
2792
- this.productUri = decodeUAString(stream, this.productUri);
2791
+ this.applicationUri = decodeString(stream, this.applicationUri);
2792
+ this.productUri = decodeString(stream, this.productUri);
2793
2793
  this.applicationName = decodeLocalizedText(stream, this.applicationName);
2794
2794
  this.applicationType = decodeApplicationType(stream, this.applicationType);
2795
- this.gatewayServerUri = decodeUAString(stream, this.gatewayServerUri);
2796
- this.discoveryProfileUri = decodeUAString(stream, this.discoveryProfileUri);
2797
- this.discoveryUrls = decodeArray(stream, decodeUAString);
2795
+ this.gatewayServerUri = decodeString(stream, this.gatewayServerUri);
2796
+ this.discoveryProfileUri = decodeString(stream, this.discoveryProfileUri);
2797
+ this.discoveryUrls = decodeArray(stream, decodeString);
2798
2798
  }
2799
2799
 
2800
2800
  // Define Enumeration setters
@@ -2823,7 +2823,7 @@ const schemaArgument = buildStructuredType({
2823
2823
  {
2824
2824
  name: "name",
2825
2825
 
2826
- fieldType: "UAString",
2826
+ fieldType: "String",
2827
2827
  },
2828
2828
  {
2829
2829
  name: "dataType",
@@ -2900,7 +2900,7 @@ export class Argument extends ExtensionObject {
2900
2900
  }
2901
2901
  public encode(stream: OutputBinaryStream): void {
2902
2902
  /* NEEDED */ super.encode(stream);
2903
- encodeUAString(this.name, stream);
2903
+ encodeString(this.name, stream);
2904
2904
  encodeNodeId(this.dataType, stream);
2905
2905
  encodeInt32(this.valueRank, stream);
2906
2906
  encodeArray(this.arrayDimensions, stream, encodeUInt32);
@@ -2909,7 +2909,7 @@ export class Argument extends ExtensionObject {
2909
2909
  public decode(stream: BinaryStream): void {
2910
2910
  // call base class implementation first
2911
2911
  /* NEEDED !!! */ super.decode(stream);
2912
- this.name = decodeUAString(stream, this.name);
2912
+ this.name = decodeString(stream, this.name);
2913
2913
  this.dataType = decodeNodeId(stream, this.dataType);
2914
2914
  this.valueRank = decodeInt32(stream, this.valueRank);
2915
2915
  this.arrayDimensions = decodeArray(stream, decodeUInt32);
@@ -2936,12 +2936,12 @@ const schemaRelativePathElement = buildStructuredType({
2936
2936
  {
2937
2937
  name: "isInverse",
2938
2938
 
2939
- fieldType: "UABoolean",
2939
+ fieldType: "Boolean",
2940
2940
  },
2941
2941
  {
2942
2942
  name: "includeSubtypes",
2943
2943
 
2944
- fieldType: "UABoolean",
2944
+ fieldType: "Boolean",
2945
2945
  },
2946
2946
  {
2947
2947
  name: "targetName",
@@ -2998,16 +2998,16 @@ export class RelativePathElement extends ExtensionObject {
2998
2998
  public encode(stream: OutputBinaryStream): void {
2999
2999
  /* NEEDED */ super.encode(stream);
3000
3000
  encodeNodeId(this.referenceTypeId, stream);
3001
- encodeUABoolean(this.isInverse, stream);
3002
- encodeUABoolean(this.includeSubtypes, stream);
3001
+ encodeBoolean(this.isInverse, stream);
3002
+ encodeBoolean(this.includeSubtypes, stream);
3003
3003
  encodeQualifiedName(this.targetName, stream);
3004
3004
  }
3005
3005
  public decode(stream: BinaryStream): void {
3006
3006
  // call base class implementation first
3007
3007
  /* NEEDED !!! */ super.decode(stream);
3008
3008
  this.referenceTypeId = decodeNodeId(stream, this.referenceTypeId);
3009
- this.isInverse = decodeUABoolean(stream, this.isInverse);
3010
- this.includeSubtypes = decodeUABoolean(stream, this.includeSubtypes);
3009
+ this.isInverse = decodeBoolean(stream, this.isInverse);
3010
+ this.includeSubtypes = decodeBoolean(stream, this.includeSubtypes);
3011
3011
  this.targetName = decodeQualifiedName(stream, this.targetName);
3012
3012
  }
3013
3013
  public get schema(): StructuredTypeSchema { return schemaRelativePathElement; }
@@ -3099,7 +3099,7 @@ const schemaAttributeOperand = buildStructuredType({
3099
3099
  {
3100
3100
  name: "alias",
3101
3101
 
3102
- fieldType: "UAString",
3102
+ fieldType: "String",
3103
3103
  },
3104
3104
  {
3105
3105
  name: "browsePath",
@@ -3171,7 +3171,7 @@ export class AttributeOperand extends FilterOperand {
3171
3171
  public encode(stream: OutputBinaryStream): void {
3172
3172
  /* NEEDED */ super.encode(stream);
3173
3173
  encodeNodeId(this.nodeId, stream);
3174
- encodeUAString(this.alias, stream);
3174
+ encodeString(this.alias, stream);
3175
3175
  this.browsePath.encode(stream);
3176
3176
  encodeUInt32(this.attributeId, stream);
3177
3177
  encodeNumericRange(this.indexRange, stream);
@@ -3180,7 +3180,7 @@ export class AttributeOperand extends FilterOperand {
3180
3180
  // call base class implementation first
3181
3181
  /* NEEDED !!! */ super.decode(stream);
3182
3182
  this.nodeId = decodeNodeId(stream, this.nodeId);
3183
- this.alias = decodeUAString(stream, this.alias);
3183
+ this.alias = decodeString(stream, this.alias);
3184
3184
  this.browsePath.decode(stream);
3185
3185
  this.attributeId = decodeUInt32(stream, this.attributeId);
3186
3186
  this.indexRange = decodeNumericRange(stream, this.indexRange);
@@ -3249,12 +3249,12 @@ const schemaBrokerConnectionTransportDataType = buildStructuredType({
3249
3249
  {
3250
3250
  name: "resourceUri",
3251
3251
 
3252
- fieldType: "UAString",
3252
+ fieldType: "String",
3253
3253
  },
3254
3254
  {
3255
3255
  name: "authenticationProfileUri",
3256
3256
 
3257
- fieldType: "UAString",
3257
+ fieldType: "String",
3258
3258
  },
3259
3259
  ]
3260
3260
  });
@@ -3295,14 +3295,14 @@ export class BrokerConnectionTransportDataType extends ConnectionTransportDataTy
3295
3295
  }
3296
3296
  public encode(stream: OutputBinaryStream): void {
3297
3297
  /* NEEDED */ super.encode(stream);
3298
- encodeUAString(this.resourceUri, stream);
3299
- encodeUAString(this.authenticationProfileUri, stream);
3298
+ encodeString(this.resourceUri, stream);
3299
+ encodeString(this.authenticationProfileUri, stream);
3300
3300
  }
3301
3301
  public decode(stream: BinaryStream): void {
3302
3302
  // call base class implementation first
3303
3303
  /* NEEDED !!! */ super.decode(stream);
3304
- this.resourceUri = decodeUAString(stream, this.resourceUri);
3305
- this.authenticationProfileUri = decodeUAString(stream, this.authenticationProfileUri);
3304
+ this.resourceUri = decodeString(stream, this.resourceUri);
3305
+ this.authenticationProfileUri = decodeString(stream, this.authenticationProfileUri);
3306
3306
  }
3307
3307
  public get schema(): StructuredTypeSchema { return schemaBrokerConnectionTransportDataType; }
3308
3308
  }
@@ -3395,17 +3395,17 @@ const schemaBrokerDataSetReaderTransportDataType = buildStructuredType({
3395
3395
  {
3396
3396
  name: "queueName",
3397
3397
 
3398
- fieldType: "UAString",
3398
+ fieldType: "String",
3399
3399
  },
3400
3400
  {
3401
3401
  name: "resourceUri",
3402
3402
 
3403
- fieldType: "UAString",
3403
+ fieldType: "String",
3404
3404
  },
3405
3405
  {
3406
3406
  name: "authenticationProfileUri",
3407
3407
 
3408
- fieldType: "UAString",
3408
+ fieldType: "String",
3409
3409
  },
3410
3410
  {
3411
3411
  name: "requestedDeliveryGuarantee",
@@ -3415,7 +3415,7 @@ const schemaBrokerDataSetReaderTransportDataType = buildStructuredType({
3415
3415
  {
3416
3416
  name: "metaDataQueueName",
3417
3417
 
3418
- fieldType: "UAString",
3418
+ fieldType: "String",
3419
3419
  },
3420
3420
  ]
3421
3421
  });
@@ -3471,20 +3471,20 @@ export class BrokerDataSetReaderTransportDataType extends DataSetReaderTransport
3471
3471
  }
3472
3472
  public encode(stream: OutputBinaryStream): void {
3473
3473
  /* NEEDED */ super.encode(stream);
3474
- encodeUAString(this.queueName, stream);
3475
- encodeUAString(this.resourceUri, stream);
3476
- encodeUAString(this.authenticationProfileUri, stream);
3474
+ encodeString(this.queueName, stream);
3475
+ encodeString(this.resourceUri, stream);
3476
+ encodeString(this.authenticationProfileUri, stream);
3477
3477
  encodeBrokerTransportQualityOfService(this.requestedDeliveryGuarantee, stream);
3478
- encodeUAString(this.metaDataQueueName, stream);
3478
+ encodeString(this.metaDataQueueName, stream);
3479
3479
  }
3480
3480
  public decode(stream: BinaryStream): void {
3481
3481
  // call base class implementation first
3482
3482
  /* NEEDED !!! */ super.decode(stream);
3483
- this.queueName = decodeUAString(stream, this.queueName);
3484
- this.resourceUri = decodeUAString(stream, this.resourceUri);
3485
- this.authenticationProfileUri = decodeUAString(stream, this.authenticationProfileUri);
3483
+ this.queueName = decodeString(stream, this.queueName);
3484
+ this.resourceUri = decodeString(stream, this.resourceUri);
3485
+ this.authenticationProfileUri = decodeString(stream, this.authenticationProfileUri);
3486
3486
  this.requestedDeliveryGuarantee = decodeBrokerTransportQualityOfService(stream, this.requestedDeliveryGuarantee);
3487
- this.metaDataQueueName = decodeUAString(stream, this.metaDataQueueName);
3487
+ this.metaDataQueueName = decodeString(stream, this.metaDataQueueName);
3488
3488
  }
3489
3489
 
3490
3490
  // Define Enumeration setters
@@ -3561,17 +3561,17 @@ const schemaBrokerDataSetWriterTransportDataType = buildStructuredType({
3561
3561
  {
3562
3562
  name: "queueName",
3563
3563
 
3564
- fieldType: "UAString",
3564
+ fieldType: "String",
3565
3565
  },
3566
3566
  {
3567
3567
  name: "resourceUri",
3568
3568
 
3569
- fieldType: "UAString",
3569
+ fieldType: "String",
3570
3570
  },
3571
3571
  {
3572
3572
  name: "authenticationProfileUri",
3573
3573
 
3574
- fieldType: "UAString",
3574
+ fieldType: "String",
3575
3575
  },
3576
3576
  {
3577
3577
  name: "requestedDeliveryGuarantee",
@@ -3581,7 +3581,7 @@ const schemaBrokerDataSetWriterTransportDataType = buildStructuredType({
3581
3581
  {
3582
3582
  name: "metaDataQueueName",
3583
3583
 
3584
- fieldType: "UAString",
3584
+ fieldType: "String",
3585
3585
  },
3586
3586
  {
3587
3587
  name: "metaDataUpdateTime",
@@ -3647,21 +3647,21 @@ export class BrokerDataSetWriterTransportDataType extends DataSetWriterTransport
3647
3647
  }
3648
3648
  public encode(stream: OutputBinaryStream): void {
3649
3649
  /* NEEDED */ super.encode(stream);
3650
- encodeUAString(this.queueName, stream);
3651
- encodeUAString(this.resourceUri, stream);
3652
- encodeUAString(this.authenticationProfileUri, stream);
3650
+ encodeString(this.queueName, stream);
3651
+ encodeString(this.resourceUri, stream);
3652
+ encodeString(this.authenticationProfileUri, stream);
3653
3653
  encodeBrokerTransportQualityOfService(this.requestedDeliveryGuarantee, stream);
3654
- encodeUAString(this.metaDataQueueName, stream);
3654
+ encodeString(this.metaDataQueueName, stream);
3655
3655
  encodeDouble(this.metaDataUpdateTime, stream);
3656
3656
  }
3657
3657
  public decode(stream: BinaryStream): void {
3658
3658
  // call base class implementation first
3659
3659
  /* NEEDED !!! */ super.decode(stream);
3660
- this.queueName = decodeUAString(stream, this.queueName);
3661
- this.resourceUri = decodeUAString(stream, this.resourceUri);
3662
- this.authenticationProfileUri = decodeUAString(stream, this.authenticationProfileUri);
3660
+ this.queueName = decodeString(stream, this.queueName);
3661
+ this.resourceUri = decodeString(stream, this.resourceUri);
3662
+ this.authenticationProfileUri = decodeString(stream, this.authenticationProfileUri);
3663
3663
  this.requestedDeliveryGuarantee = decodeBrokerTransportQualityOfService(stream, this.requestedDeliveryGuarantee);
3664
- this.metaDataQueueName = decodeUAString(stream, this.metaDataQueueName);
3664
+ this.metaDataQueueName = decodeString(stream, this.metaDataQueueName);
3665
3665
  this.metaDataUpdateTime = decodeDouble(stream, this.metaDataUpdateTime);
3666
3666
  }
3667
3667
 
@@ -3739,17 +3739,17 @@ const schemaBrokerWriterGroupTransportDataType = buildStructuredType({
3739
3739
  {
3740
3740
  name: "queueName",
3741
3741
 
3742
- fieldType: "UAString",
3742
+ fieldType: "String",
3743
3743
  },
3744
3744
  {
3745
3745
  name: "resourceUri",
3746
3746
 
3747
- fieldType: "UAString",
3747
+ fieldType: "String",
3748
3748
  },
3749
3749
  {
3750
3750
  name: "authenticationProfileUri",
3751
3751
 
3752
- fieldType: "UAString",
3752
+ fieldType: "String",
3753
3753
  },
3754
3754
  {
3755
3755
  name: "requestedDeliveryGuarantee",
@@ -3805,17 +3805,17 @@ export class BrokerWriterGroupTransportDataType extends WriterGroupTransportData
3805
3805
  }
3806
3806
  public encode(stream: OutputBinaryStream): void {
3807
3807
  /* NEEDED */ super.encode(stream);
3808
- encodeUAString(this.queueName, stream);
3809
- encodeUAString(this.resourceUri, stream);
3810
- encodeUAString(this.authenticationProfileUri, stream);
3808
+ encodeString(this.queueName, stream);
3809
+ encodeString(this.resourceUri, stream);
3810
+ encodeString(this.authenticationProfileUri, stream);
3811
3811
  encodeBrokerTransportQualityOfService(this.requestedDeliveryGuarantee, stream);
3812
3812
  }
3813
3813
  public decode(stream: BinaryStream): void {
3814
3814
  // call base class implementation first
3815
3815
  /* NEEDED !!! */ super.decode(stream);
3816
- this.queueName = decodeUAString(stream, this.queueName);
3817
- this.resourceUri = decodeUAString(stream, this.resourceUri);
3818
- this.authenticationProfileUri = decodeUAString(stream, this.authenticationProfileUri);
3816
+ this.queueName = decodeString(stream, this.queueName);
3817
+ this.resourceUri = decodeString(stream, this.resourceUri);
3818
+ this.authenticationProfileUri = decodeString(stream, this.authenticationProfileUri);
3819
3819
  this.requestedDeliveryGuarantee = decodeBrokerTransportQualityOfService(stream, this.requestedDeliveryGuarantee);
3820
3820
  }
3821
3821
 
@@ -3860,7 +3860,7 @@ const schemaBrowseDescription = buildStructuredType({
3860
3860
  {
3861
3861
  name: "includeSubtypes",
3862
3862
 
3863
- fieldType: "UABoolean",
3863
+ fieldType: "Boolean",
3864
3864
  },
3865
3865
  {
3866
3866
  name: "nodeClassMask",
@@ -3934,7 +3934,7 @@ export class BrowseDescription extends ExtensionObject {
3934
3934
  encodeNodeId(this.nodeId, stream);
3935
3935
  encodeBrowseDirection(this.browseDirection, stream);
3936
3936
  encodeNodeId(this.referenceTypeId, stream);
3937
- encodeUABoolean(this.includeSubtypes, stream);
3937
+ encodeBoolean(this.includeSubtypes, stream);
3938
3938
  encodeUInt32(this.nodeClassMask, stream);
3939
3939
  encodeUInt32(this.resultMask, stream);
3940
3940
  }
@@ -3944,7 +3944,7 @@ export class BrowseDescription extends ExtensionObject {
3944
3944
  this.nodeId = decodeNodeId(stream, this.nodeId);
3945
3945
  this.browseDirection = decodeBrowseDirection(stream, this.browseDirection);
3946
3946
  this.referenceTypeId = decodeNodeId(stream, this.referenceTypeId);
3947
- this.includeSubtypes = decodeUABoolean(stream, this.includeSubtypes);
3947
+ this.includeSubtypes = decodeBoolean(stream, this.includeSubtypes);
3948
3948
  this.nodeClassMask = decodeUInt32(stream, this.nodeClassMask);
3949
3949
  this.resultMask = decodeUInt32(stream, this.resultMask);
3950
3950
  }
@@ -3980,7 +3980,7 @@ const schemaBrowseNextRequest = buildStructuredType({
3980
3980
  {
3981
3981
  name: "releaseContinuationPoints",
3982
3982
 
3983
- fieldType: "UABoolean",
3983
+ fieldType: "Boolean",
3984
3984
  },
3985
3985
  {
3986
3986
  name: "continuationPoints",
@@ -4033,14 +4033,14 @@ export class BrowseNextRequest extends ExtensionObject {
4033
4033
  public encode(stream: OutputBinaryStream): void {
4034
4034
  /* NEEDED */ super.encode(stream);
4035
4035
  this.requestHeader.encode(stream);
4036
- encodeUABoolean(this.releaseContinuationPoints, stream);
4036
+ encodeBoolean(this.releaseContinuationPoints, stream);
4037
4037
  encodeArray(this.continuationPoints, stream, encodeByteString);
4038
4038
  }
4039
4039
  public decode(stream: BinaryStream): void {
4040
4040
  // call base class implementation first
4041
4041
  /* NEEDED !!! */ super.decode(stream);
4042
4042
  this.requestHeader.decode(stream);
4043
- this.releaseContinuationPoints = decodeUABoolean(stream, this.releaseContinuationPoints);
4043
+ this.releaseContinuationPoints = decodeBoolean(stream, this.releaseContinuationPoints);
4044
4044
  this.continuationPoints = decodeArray(stream, decodeByteString);
4045
4045
  }
4046
4046
  public get schema(): StructuredTypeSchema { return schemaBrowseNextRequest; }
@@ -4064,7 +4064,7 @@ const schemaReferenceDescription = buildStructuredType({
4064
4064
  {
4065
4065
  name: "isForward",
4066
4066
 
4067
- fieldType: "UABoolean",
4067
+ fieldType: "Boolean",
4068
4068
  },
4069
4069
  {
4070
4070
  name: "nodeId",
@@ -4156,7 +4156,7 @@ export class ReferenceDescription extends ExtensionObject {
4156
4156
  public encode(stream: OutputBinaryStream): void {
4157
4157
  /* NEEDED */ super.encode(stream);
4158
4158
  encodeNodeId(this.referenceTypeId, stream);
4159
- encodeUABoolean(this.isForward, stream);
4159
+ encodeBoolean(this.isForward, stream);
4160
4160
  encodeExpandedNodeId(this.nodeId, stream);
4161
4161
  encodeQualifiedName(this.browseName, stream);
4162
4162
  encodeLocalizedText(this.displayName, stream);
@@ -4167,7 +4167,7 @@ export class ReferenceDescription extends ExtensionObject {
4167
4167
  // call base class implementation first
4168
4168
  /* NEEDED !!! */ super.decode(stream);
4169
4169
  this.referenceTypeId = decodeNodeId(stream, this.referenceTypeId);
4170
- this.isForward = decodeUABoolean(stream, this.isForward);
4170
+ this.isForward = decodeBoolean(stream, this.isForward);
4171
4171
  this.nodeId = decodeExpandedNodeId(stream, this.nodeId);
4172
4172
  this.browseName = decodeQualifiedName(stream, this.browseName);
4173
4173
  this.displayName = decodeLocalizedText(stream, this.displayName);
@@ -4888,27 +4888,27 @@ const schemaBuildInfo = buildStructuredType({
4888
4888
  {
4889
4889
  name: "productUri",
4890
4890
 
4891
- fieldType: "UAString",
4891
+ fieldType: "String",
4892
4892
  },
4893
4893
  {
4894
4894
  name: "manufacturerName",
4895
4895
 
4896
- fieldType: "UAString",
4896
+ fieldType: "String",
4897
4897
  },
4898
4898
  {
4899
4899
  name: "productName",
4900
4900
 
4901
- fieldType: "UAString",
4901
+ fieldType: "String",
4902
4902
  },
4903
4903
  {
4904
4904
  name: "softwareVersion",
4905
4905
 
4906
- fieldType: "UAString",
4906
+ fieldType: "String",
4907
4907
  },
4908
4908
  {
4909
4909
  name: "buildNumber",
4910
4910
 
4911
- fieldType: "UAString",
4911
+ fieldType: "String",
4912
4912
  },
4913
4913
  {
4914
4914
  name: "buildDate",
@@ -4974,21 +4974,21 @@ export class BuildInfo extends ExtensionObject {
4974
4974
  }
4975
4975
  public encode(stream: OutputBinaryStream): void {
4976
4976
  /* NEEDED */ super.encode(stream);
4977
- encodeUAString(this.productUri, stream);
4978
- encodeUAString(this.manufacturerName, stream);
4979
- encodeUAString(this.productName, stream);
4980
- encodeUAString(this.softwareVersion, stream);
4981
- encodeUAString(this.buildNumber, stream);
4977
+ encodeString(this.productUri, stream);
4978
+ encodeString(this.manufacturerName, stream);
4979
+ encodeString(this.productName, stream);
4980
+ encodeString(this.softwareVersion, stream);
4981
+ encodeString(this.buildNumber, stream);
4982
4982
  encodeDateTime(this.buildDate, stream);
4983
4983
  }
4984
4984
  public decode(stream: BinaryStream): void {
4985
4985
  // call base class implementation first
4986
4986
  /* NEEDED !!! */ super.decode(stream);
4987
- this.productUri = decodeUAString(stream, this.productUri);
4988
- this.manufacturerName = decodeUAString(stream, this.manufacturerName);
4989
- this.productName = decodeUAString(stream, this.productName);
4990
- this.softwareVersion = decodeUAString(stream, this.softwareVersion);
4991
- this.buildNumber = decodeUAString(stream, this.buildNumber);
4987
+ this.productUri = decodeString(stream, this.productUri);
4988
+ this.manufacturerName = decodeString(stream, this.manufacturerName);
4989
+ this.productName = decodeString(stream, this.productName);
4990
+ this.softwareVersion = decodeString(stream, this.softwareVersion);
4991
+ this.buildNumber = decodeString(stream, this.buildNumber);
4992
4992
  this.buildDate = decodeDateTime(stream, this.buildDate);
4993
4993
  }
4994
4994
  public get schema(): StructuredTypeSchema { return schemaBuildInfo; }
@@ -5770,7 +5770,7 @@ const schemaCloseSessionRequest = buildStructuredType({
5770
5770
  {
5771
5771
  name: "deleteSubscriptions",
5772
5772
 
5773
- fieldType: "UABoolean",
5773
+ fieldType: "Boolean",
5774
5774
  },
5775
5775
  ]
5776
5776
  });
@@ -5812,13 +5812,13 @@ export class CloseSessionRequest extends ExtensionObject {
5812
5812
  public encode(stream: OutputBinaryStream): void {
5813
5813
  /* NEEDED */ super.encode(stream);
5814
5814
  this.requestHeader.encode(stream);
5815
- encodeUABoolean(this.deleteSubscriptions, stream);
5815
+ encodeBoolean(this.deleteSubscriptions, stream);
5816
5816
  }
5817
5817
  public decode(stream: BinaryStream): void {
5818
5818
  // call base class implementation first
5819
5819
  /* NEEDED !!! */ super.decode(stream);
5820
5820
  this.requestHeader.decode(stream);
5821
- this.deleteSubscriptions = decodeUABoolean(stream, this.deleteSubscriptions);
5821
+ this.deleteSubscriptions = decodeBoolean(stream, this.deleteSubscriptions);
5822
5822
  }
5823
5823
  public get schema(): StructuredTypeSchema { return schemaCloseSessionRequest; }
5824
5824
  }
@@ -6534,7 +6534,7 @@ const schemaMonitoringParameters = buildStructuredType({
6534
6534
  {
6535
6535
  name: "discardOldest",
6536
6536
 
6537
- fieldType: "UABoolean",
6537
+ fieldType: "Boolean",
6538
6538
  },
6539
6539
  ]
6540
6540
  });
@@ -6594,7 +6594,7 @@ export class MonitoringParameters extends ExtensionObject {
6594
6594
  encodeDouble(this.samplingInterval, stream);
6595
6595
  encodeExtensionObject(this.filter, stream);
6596
6596
  encodeUInt32(this.queueSize, stream);
6597
- encodeUABoolean(this.discardOldest, stream);
6597
+ encodeBoolean(this.discardOldest, stream);
6598
6598
  }
6599
6599
  public decode(stream: BinaryStream): void {
6600
6600
  // call base class implementation first
@@ -6603,7 +6603,7 @@ export class MonitoringParameters extends ExtensionObject {
6603
6603
  this.samplingInterval = decodeDouble(stream, this.samplingInterval);
6604
6604
  this.filter = decodeExtensionObject(stream, this.filter);
6605
6605
  this.queueSize = decodeUInt32(stream, this.queueSize);
6606
- this.discardOldest = decodeUABoolean(stream, this.discardOldest);
6606
+ this.discardOldest = decodeBoolean(stream, this.discardOldest);
6607
6607
  }
6608
6608
  public get schema(): StructuredTypeSchema { return schemaMonitoringParameters; }
6609
6609
  }
@@ -7040,17 +7040,17 @@ const schemaCreateSessionRequest = buildStructuredType({
7040
7040
  {
7041
7041
  name: "serverUri",
7042
7042
 
7043
- fieldType: "UAString",
7043
+ fieldType: "String",
7044
7044
  },
7045
7045
  {
7046
7046
  name: "endpointUrl",
7047
7047
 
7048
- fieldType: "UAString",
7048
+ fieldType: "String",
7049
7049
  },
7050
7050
  {
7051
7051
  name: "sessionName",
7052
7052
 
7053
- fieldType: "UAString",
7053
+ fieldType: "String",
7054
7054
  },
7055
7055
  {
7056
7056
  name: "clientNonce",
@@ -7148,9 +7148,9 @@ export class CreateSessionRequest extends ExtensionObject {
7148
7148
  /* NEEDED */ super.encode(stream);
7149
7149
  this.requestHeader.encode(stream);
7150
7150
  this.clientDescription.encode(stream);
7151
- encodeUAString(this.serverUri, stream);
7152
- encodeUAString(this.endpointUrl, stream);
7153
- encodeUAString(this.sessionName, stream);
7151
+ encodeString(this.serverUri, stream);
7152
+ encodeString(this.endpointUrl, stream);
7153
+ encodeString(this.sessionName, stream);
7154
7154
  encodeByteString(this.clientNonce, stream);
7155
7155
  encodeByteString(this.clientCertificate, stream);
7156
7156
  encodeDouble(this.requestedSessionTimeout, stream);
@@ -7161,9 +7161,9 @@ export class CreateSessionRequest extends ExtensionObject {
7161
7161
  /* NEEDED !!! */ super.decode(stream);
7162
7162
  this.requestHeader.decode(stream);
7163
7163
  this.clientDescription.decode(stream);
7164
- this.serverUri = decodeUAString(stream, this.serverUri);
7165
- this.endpointUrl = decodeUAString(stream, this.endpointUrl);
7166
- this.sessionName = decodeUAString(stream, this.sessionName);
7164
+ this.serverUri = decodeString(stream, this.serverUri);
7165
+ this.endpointUrl = decodeString(stream, this.endpointUrl);
7166
+ this.sessionName = decodeString(stream, this.sessionName);
7167
7167
  this.clientNonce = decodeByteString(stream, this.clientNonce);
7168
7168
  this.clientCertificate = decodeByteString(stream, this.clientCertificate);
7169
7169
  this.requestedSessionTimeout = decodeDouble(stream, this.requestedSessionTimeout);
@@ -7236,7 +7236,7 @@ const schemaUserTokenPolicy = buildStructuredType({
7236
7236
  {
7237
7237
  name: "policyId",
7238
7238
 
7239
- fieldType: "UAString",
7239
+ fieldType: "String",
7240
7240
  },
7241
7241
  {
7242
7242
  name: "tokenType",
@@ -7246,17 +7246,17 @@ const schemaUserTokenPolicy = buildStructuredType({
7246
7246
  {
7247
7247
  name: "issuedTokenType",
7248
7248
 
7249
- fieldType: "UAString",
7249
+ fieldType: "String",
7250
7250
  },
7251
7251
  {
7252
7252
  name: "issuerEndpointUrl",
7253
7253
 
7254
- fieldType: "UAString",
7254
+ fieldType: "String",
7255
7255
  },
7256
7256
  {
7257
7257
  name: "securityPolicyUri",
7258
7258
 
7259
- fieldType: "UAString",
7259
+ fieldType: "String",
7260
7260
  },
7261
7261
  ]
7262
7262
  });
@@ -7312,20 +7312,20 @@ export class UserTokenPolicy extends ExtensionObject {
7312
7312
  }
7313
7313
  public encode(stream: OutputBinaryStream): void {
7314
7314
  /* NEEDED */ super.encode(stream);
7315
- encodeUAString(this.policyId, stream);
7315
+ encodeString(this.policyId, stream);
7316
7316
  encodeUserTokenType(this.tokenType, stream);
7317
- encodeUAString(this.issuedTokenType, stream);
7318
- encodeUAString(this.issuerEndpointUrl, stream);
7319
- encodeUAString(this.securityPolicyUri, stream);
7317
+ encodeString(this.issuedTokenType, stream);
7318
+ encodeString(this.issuerEndpointUrl, stream);
7319
+ encodeString(this.securityPolicyUri, stream);
7320
7320
  }
7321
7321
  public decode(stream: BinaryStream): void {
7322
7322
  // call base class implementation first
7323
7323
  /* NEEDED !!! */ super.decode(stream);
7324
- this.policyId = decodeUAString(stream, this.policyId);
7324
+ this.policyId = decodeString(stream, this.policyId);
7325
7325
  this.tokenType = decodeUserTokenType(stream, this.tokenType);
7326
- this.issuedTokenType = decodeUAString(stream, this.issuedTokenType);
7327
- this.issuerEndpointUrl = decodeUAString(stream, this.issuerEndpointUrl);
7328
- this.securityPolicyUri = decodeUAString(stream, this.securityPolicyUri);
7326
+ this.issuedTokenType = decodeString(stream, this.issuedTokenType);
7327
+ this.issuerEndpointUrl = decodeString(stream, this.issuerEndpointUrl);
7328
+ this.securityPolicyUri = decodeString(stream, this.securityPolicyUri);
7329
7329
  }
7330
7330
 
7331
7331
  // Define Enumeration setters
@@ -7354,7 +7354,7 @@ const schemaEndpointDescription = buildStructuredType({
7354
7354
  {
7355
7355
  name: "endpointUrl",
7356
7356
 
7357
- fieldType: "UAString",
7357
+ fieldType: "String",
7358
7358
  },
7359
7359
  {
7360
7360
  name: "server",
@@ -7374,7 +7374,7 @@ const schemaEndpointDescription = buildStructuredType({
7374
7374
  {
7375
7375
  name: "securityPolicyUri",
7376
7376
 
7377
- fieldType: "UAString",
7377
+ fieldType: "String",
7378
7378
  },
7379
7379
  {
7380
7380
  name: "userIdentityTokens",
@@ -7385,7 +7385,7 @@ const schemaEndpointDescription = buildStructuredType({
7385
7385
  {
7386
7386
  name: "transportProfileUri",
7387
7387
 
7388
- fieldType: "UAString",
7388
+ fieldType: "String",
7389
7389
  },
7390
7390
  {
7391
7391
  name: "securityLevel",
@@ -7465,29 +7465,29 @@ export class EndpointDescription extends ExtensionObject {
7465
7465
  }
7466
7466
  public encode(stream: OutputBinaryStream): void {
7467
7467
  /* NEEDED */ super.encode(stream);
7468
- encodeUAString(this.endpointUrl, stream);
7468
+ encodeString(this.endpointUrl, stream);
7469
7469
  this.server.encode(stream);
7470
7470
  encodeByteString(this.serverCertificate, stream);
7471
7471
  encodeMessageSecurityMode(this.securityMode, stream);
7472
- encodeUAString(this.securityPolicyUri, stream);
7472
+ encodeString(this.securityPolicyUri, stream);
7473
7473
  encodeArray(this.userIdentityTokens, stream, (obj, stream1) => { obj.encode(stream1); });
7474
- encodeUAString(this.transportProfileUri, stream);
7474
+ encodeString(this.transportProfileUri, stream);
7475
7475
  encodeByte(this.securityLevel, stream);
7476
7476
  }
7477
7477
  public decode(stream: BinaryStream): void {
7478
7478
  // call base class implementation first
7479
7479
  /* NEEDED !!! */ super.decode(stream);
7480
- this.endpointUrl = decodeUAString(stream, this.endpointUrl);
7480
+ this.endpointUrl = decodeString(stream, this.endpointUrl);
7481
7481
  this.server.decode(stream);
7482
7482
  this.serverCertificate = decodeByteString(stream, this.serverCertificate);
7483
7483
  this.securityMode = decodeMessageSecurityMode(stream, this.securityMode);
7484
- this.securityPolicyUri = decodeUAString(stream, this.securityPolicyUri);
7484
+ this.securityPolicyUri = decodeString(stream, this.securityPolicyUri);
7485
7485
  this.userIdentityTokens = decodeArray(stream, (stream1: BinaryStream) => {
7486
7486
  const obj = new UserTokenPolicy(null);
7487
7487
  obj.decode(stream1);
7488
7488
  return obj;
7489
7489
  });
7490
- this.transportProfileUri = decodeUAString(stream, this.transportProfileUri);
7490
+ this.transportProfileUri = decodeString(stream, this.transportProfileUri);
7491
7491
  this.securityLevel = decodeByte(stream, this.securityLevel);
7492
7492
  }
7493
7493
 
@@ -7727,7 +7727,7 @@ const schemaCreateSubscriptionRequest = buildStructuredType({
7727
7727
  {
7728
7728
  name: "publishingEnabled",
7729
7729
 
7730
- fieldType: "UABoolean",
7730
+ fieldType: "Boolean",
7731
7731
  },
7732
7732
  {
7733
7733
  name: "priority",
@@ -7803,7 +7803,7 @@ export class CreateSubscriptionRequest extends ExtensionObject {
7803
7803
  encodeUInt32(this.requestedLifetimeCount, stream);
7804
7804
  encodeUInt32(this.requestedMaxKeepAliveCount, stream);
7805
7805
  encodeUInt32(this.maxNotificationsPerPublish, stream);
7806
- encodeUABoolean(this.publishingEnabled, stream);
7806
+ encodeBoolean(this.publishingEnabled, stream);
7807
7807
  encodeByte(this.priority, stream);
7808
7808
  }
7809
7809
  public decode(stream: BinaryStream): void {
@@ -7814,7 +7814,7 @@ export class CreateSubscriptionRequest extends ExtensionObject {
7814
7814
  this.requestedLifetimeCount = decodeUInt32(stream, this.requestedLifetimeCount);
7815
7815
  this.requestedMaxKeepAliveCount = decodeUInt32(stream, this.requestedMaxKeepAliveCount);
7816
7816
  this.maxNotificationsPerPublish = decodeUInt32(stream, this.maxNotificationsPerPublish);
7817
- this.publishingEnabled = decodeUABoolean(stream, this.publishingEnabled);
7817
+ this.publishingEnabled = decodeBoolean(stream, this.publishingEnabled);
7818
7818
  this.priority = decodeByte(stream, this.priority);
7819
7819
  }
7820
7820
  public get schema(): StructuredTypeSchema { return schemaCreateSubscriptionRequest; }
@@ -7950,7 +7950,7 @@ const schemaCurrencyUnitType = buildStructuredType({
7950
7950
  {
7951
7951
  name: "alphabeticCode",
7952
7952
 
7953
- fieldType: "UAString",
7953
+ fieldType: "String",
7954
7954
  },
7955
7955
  {
7956
7956
  name: "currency",
@@ -8008,7 +8008,7 @@ export class CurrencyUnitType extends ExtensionObject {
8008
8008
  /* NEEDED */ super.encode(stream);
8009
8009
  encodeInt16(this.numericCode, stream);
8010
8010
  encodeSByte(this.exponent, stream);
8011
- encodeUAString(this.alphabeticCode, stream);
8011
+ encodeString(this.alphabeticCode, stream);
8012
8012
  encodeLocalizedText(this.currency, stream);
8013
8013
  }
8014
8014
  public decode(stream: BinaryStream): void {
@@ -8016,7 +8016,7 @@ export class CurrencyUnitType extends ExtensionObject {
8016
8016
  /* NEEDED !!! */ super.decode(stream);
8017
8017
  this.numericCode = decodeInt16(stream, this.numericCode);
8018
8018
  this.exponent = decodeSByte(stream, this.exponent);
8019
- this.alphabeticCode = decodeUAString(stream, this.alphabeticCode);
8019
+ this.alphabeticCode = decodeString(stream, this.alphabeticCode);
8020
8020
  this.currency = decodeLocalizedText(stream, this.currency);
8021
8021
  }
8022
8022
  public get schema(): StructuredTypeSchema { return schemaCurrencyUnitType; }
@@ -8500,7 +8500,7 @@ const schemaStructureField = buildStructuredType({
8500
8500
  {
8501
8501
  name: "name",
8502
8502
 
8503
- fieldType: "UAString",
8503
+ fieldType: "String",
8504
8504
  },
8505
8505
  {
8506
8506
  name: "description",
@@ -8531,7 +8531,7 @@ const schemaStructureField = buildStructuredType({
8531
8531
  {
8532
8532
  name: "isOptional",
8533
8533
 
8534
- fieldType: "UABoolean",
8534
+ fieldType: "Boolean",
8535
8535
  },
8536
8536
  ]
8537
8537
  });
@@ -8597,24 +8597,24 @@ export class StructureField extends ExtensionObject {
8597
8597
  }
8598
8598
  public encode(stream: OutputBinaryStream): void {
8599
8599
  /* NEEDED */ super.encode(stream);
8600
- encodeUAString(this.name, stream);
8600
+ encodeString(this.name, stream);
8601
8601
  encodeLocalizedText(this.description, stream);
8602
8602
  encodeNodeId(this.dataType, stream);
8603
8603
  encodeInt32(this.valueRank, stream);
8604
8604
  encodeArray(this.arrayDimensions, stream, encodeUInt32);
8605
8605
  encodeUInt32(this.maxStringLength, stream);
8606
- encodeUABoolean(this.isOptional, stream);
8606
+ encodeBoolean(this.isOptional, stream);
8607
8607
  }
8608
8608
  public decode(stream: BinaryStream): void {
8609
8609
  // call base class implementation first
8610
8610
  /* NEEDED !!! */ super.decode(stream);
8611
- this.name = decodeUAString(stream, this.name);
8611
+ this.name = decodeString(stream, this.name);
8612
8612
  this.description = decodeLocalizedText(stream, this.description);
8613
8613
  this.dataType = decodeNodeId(stream, this.dataType);
8614
8614
  this.valueRank = decodeInt32(stream, this.valueRank);
8615
8615
  this.arrayDimensions = decodeArray(stream, decodeUInt32);
8616
8616
  this.maxStringLength = decodeUInt32(stream, this.maxStringLength);
8617
- this.isOptional = decodeUABoolean(stream, this.isOptional);
8617
+ this.isOptional = decodeBoolean(stream, this.isOptional);
8618
8618
  }
8619
8619
  public get schema(): StructuredTypeSchema { return schemaStructureField; }
8620
8620
  }
@@ -8889,7 +8889,7 @@ const schemaEnumField = buildStructuredType({
8889
8889
  {
8890
8890
  name: "name",
8891
8891
 
8892
- fieldType: "UAString",
8892
+ fieldType: "String",
8893
8893
  },
8894
8894
  ]
8895
8895
  });
@@ -8925,12 +8925,12 @@ export class EnumField extends EnumValueType {
8925
8925
  }
8926
8926
  public encode(stream: OutputBinaryStream): void {
8927
8927
  /* NEEDED */ super.encode(stream);
8928
- encodeUAString(this.name, stream);
8928
+ encodeString(this.name, stream);
8929
8929
  }
8930
8930
  public decode(stream: BinaryStream): void {
8931
8931
  // call base class implementation first
8932
8932
  /* NEEDED !!! */ super.decode(stream);
8933
- this.name = decodeUAString(stream, this.name);
8933
+ this.name = decodeString(stream, this.name);
8934
8934
  }
8935
8935
  public get schema(): StructuredTypeSchema { return schemaEnumField; }
8936
8936
  }
@@ -9158,7 +9158,7 @@ const schemaDataTypeSchemaHeader = buildStructuredType({
9158
9158
  {
9159
9159
  name: "namespaces",
9160
9160
 
9161
- fieldType: "UAString",
9161
+ fieldType: "String",
9162
9162
  isArray: true
9163
9163
  },
9164
9164
  {
@@ -9240,7 +9240,7 @@ export class DataTypeSchemaHeader extends ExtensionObject {
9240
9240
  }
9241
9241
  public encode(stream: OutputBinaryStream): void {
9242
9242
  /* NEEDED */ super.encode(stream);
9243
- encodeArray(this.namespaces, stream, encodeUAString);
9243
+ encodeArray(this.namespaces, stream, encodeString);
9244
9244
  encodeArray(this.structureDataTypes, stream, (obj, stream1) => { obj.encode(stream1); });
9245
9245
  encodeArray(this.enumDataTypes, stream, (obj, stream1) => { obj.encode(stream1); });
9246
9246
  encodeArray(this.simpleDataTypes, stream, (obj, stream1) => { obj.encode(stream1); });
@@ -9248,7 +9248,7 @@ export class DataTypeSchemaHeader extends ExtensionObject {
9248
9248
  public decode(stream: BinaryStream): void {
9249
9249
  // call base class implementation first
9250
9250
  /* NEEDED !!! */ super.decode(stream);
9251
- this.namespaces = decodeArray(stream, decodeUAString);
9251
+ this.namespaces = decodeArray(stream, decodeString);
9252
9252
  this.structureDataTypes = decodeArray(stream, (stream1: BinaryStream) => {
9253
9253
  const obj = new StructureDescription(null);
9254
9254
  obj.decode(stream1);
@@ -9305,7 +9305,7 @@ const schemaFieldMetaData = buildStructuredType({
9305
9305
  {
9306
9306
  name: "name",
9307
9307
 
9308
- fieldType: "UAString",
9308
+ fieldType: "String",
9309
9309
  },
9310
9310
  {
9311
9311
  name: "description",
@@ -9437,7 +9437,7 @@ export class FieldMetaData extends ExtensionObject {
9437
9437
  }
9438
9438
  public encode(stream: OutputBinaryStream): void {
9439
9439
  /* NEEDED */ super.encode(stream);
9440
- encodeUAString(this.name, stream);
9440
+ encodeString(this.name, stream);
9441
9441
  encodeLocalizedText(this.description, stream);
9442
9442
  encodeDataSetFieldFlags(this.fieldFlags, stream);
9443
9443
  encodeByte(this.builtInType, stream);
@@ -9451,7 +9451,7 @@ export class FieldMetaData extends ExtensionObject {
9451
9451
  public decode(stream: BinaryStream): void {
9452
9452
  // call base class implementation first
9453
9453
  /* NEEDED !!! */ super.decode(stream);
9454
- this.name = decodeUAString(stream, this.name);
9454
+ this.name = decodeString(stream, this.name);
9455
9455
  this.description = decodeLocalizedText(stream, this.description);
9456
9456
  this.fieldFlags = decodeDataSetFieldFlags(stream, this.fieldFlags);
9457
9457
  this.builtInType = decodeByte(stream, this.builtInType);
@@ -9493,7 +9493,7 @@ const schemaDataSetMetaDataType = buildStructuredType({
9493
9493
  {
9494
9494
  name: "name",
9495
9495
 
9496
- fieldType: "UAString",
9496
+ fieldType: "String",
9497
9497
  },
9498
9498
  {
9499
9499
  name: "description",
@@ -9574,7 +9574,7 @@ export class DataSetMetaDataType extends DataTypeSchemaHeader {
9574
9574
  }
9575
9575
  public encode(stream: OutputBinaryStream): void {
9576
9576
  /* NEEDED */ super.encode(stream);
9577
- encodeUAString(this.name, stream);
9577
+ encodeString(this.name, stream);
9578
9578
  encodeLocalizedText(this.description, stream);
9579
9579
  encodeArray(this.fields, stream, (obj, stream1) => { obj.encode(stream1); });
9580
9580
  encodeGuid(this.dataSetClassId, stream);
@@ -9583,7 +9583,7 @@ export class DataSetMetaDataType extends DataTypeSchemaHeader {
9583
9583
  public decode(stream: BinaryStream): void {
9584
9584
  // call base class implementation first
9585
9585
  /* NEEDED !!! */ super.decode(stream);
9586
- this.name = decodeUAString(stream, this.name);
9586
+ this.name = decodeString(stream, this.name);
9587
9587
  this.description = decodeLocalizedText(stream, this.description);
9588
9588
  this.fields = decodeArray(stream, (stream1: BinaryStream) => {
9589
9589
  const obj = new FieldMetaData(null);
@@ -9633,12 +9633,12 @@ const schemaDataSetReaderDataType = buildStructuredType({
9633
9633
  {
9634
9634
  name: "name",
9635
9635
 
9636
- fieldType: "UAString",
9636
+ fieldType: "String",
9637
9637
  },
9638
9638
  {
9639
9639
  name: "enabled",
9640
9640
 
9641
- fieldType: "UABoolean",
9641
+ fieldType: "Boolean",
9642
9642
  },
9643
9643
  {
9644
9644
  name: "publisherId",
@@ -9678,7 +9678,7 @@ const schemaDataSetReaderDataType = buildStructuredType({
9678
9678
  {
9679
9679
  name: "headerLayoutUri",
9680
9680
 
9681
- fieldType: "UAString",
9681
+ fieldType: "String",
9682
9682
  },
9683
9683
  {
9684
9684
  name: "securityMode",
@@ -9688,7 +9688,7 @@ const schemaDataSetReaderDataType = buildStructuredType({
9688
9688
  {
9689
9689
  name: "securityGroupId",
9690
9690
 
9691
- fieldType: "UAString",
9691
+ fieldType: "String",
9692
9692
  },
9693
9693
  {
9694
9694
  name: "securityKeyServices",
@@ -9839,8 +9839,8 @@ export class DataSetReaderDataType extends ExtensionObject {
9839
9839
  }
9840
9840
  public encode(stream: OutputBinaryStream): void {
9841
9841
  /* NEEDED */ super.encode(stream);
9842
- encodeUAString(this.name, stream);
9843
- encodeUABoolean(this.enabled, stream);
9842
+ encodeString(this.name, stream);
9843
+ encodeBoolean(this.enabled, stream);
9844
9844
  encodeVariant(this.publisherId, stream);
9845
9845
  encodeUInt16(this.writerGroupId, stream);
9846
9846
  encodeUInt16(this.dataSetWriterId, stream);
@@ -9848,9 +9848,9 @@ export class DataSetReaderDataType extends ExtensionObject {
9848
9848
  encodeDataSetFieldContentMask(this.dataSetFieldContentMask, stream);
9849
9849
  encodeDouble(this.messageReceiveTimeout, stream);
9850
9850
  encodeUInt32(this.keyFrameCount, stream);
9851
- encodeUAString(this.headerLayoutUri, stream);
9851
+ encodeString(this.headerLayoutUri, stream);
9852
9852
  encodeMessageSecurityMode(this.securityMode, stream);
9853
- encodeUAString(this.securityGroupId, stream);
9853
+ encodeString(this.securityGroupId, stream);
9854
9854
  encodeArray(this.securityKeyServices, stream, (obj, stream1) => { obj.encode(stream1); });
9855
9855
  encodeArray(this.dataSetReaderProperties, stream, (obj, stream1) => { obj.encode(stream1); });
9856
9856
  encodeExtensionObject(this.transportSettings, stream);
@@ -9860,8 +9860,8 @@ export class DataSetReaderDataType extends ExtensionObject {
9860
9860
  public decode(stream: BinaryStream): void {
9861
9861
  // call base class implementation first
9862
9862
  /* NEEDED !!! */ super.decode(stream);
9863
- this.name = decodeUAString(stream, this.name);
9864
- this.enabled = decodeUABoolean(stream, this.enabled);
9863
+ this.name = decodeString(stream, this.name);
9864
+ this.enabled = decodeBoolean(stream, this.enabled);
9865
9865
  this.publisherId = decodeVariant(stream, this.publisherId);
9866
9866
  this.writerGroupId = decodeUInt16(stream, this.writerGroupId);
9867
9867
  this.dataSetWriterId = decodeUInt16(stream, this.dataSetWriterId);
@@ -9869,9 +9869,9 @@ export class DataSetReaderDataType extends ExtensionObject {
9869
9869
  this.dataSetFieldContentMask = decodeDataSetFieldContentMask(stream, this.dataSetFieldContentMask);
9870
9870
  this.messageReceiveTimeout = decodeDouble(stream, this.messageReceiveTimeout);
9871
9871
  this.keyFrameCount = decodeUInt32(stream, this.keyFrameCount);
9872
- this.headerLayoutUri = decodeUAString(stream, this.headerLayoutUri);
9872
+ this.headerLayoutUri = decodeString(stream, this.headerLayoutUri);
9873
9873
  this.securityMode = decodeMessageSecurityMode(stream, this.securityMode);
9874
- this.securityGroupId = decodeUAString(stream, this.securityGroupId);
9874
+ this.securityGroupId = decodeString(stream, this.securityGroupId);
9875
9875
  this.securityKeyServices = decodeArray(stream, (stream1: BinaryStream) => {
9876
9876
  const obj = new EndpointDescription(null);
9877
9877
  obj.decode(stream1);
@@ -9970,12 +9970,12 @@ const schemaDataSetWriterDataType = buildStructuredType({
9970
9970
  {
9971
9971
  name: "name",
9972
9972
 
9973
- fieldType: "UAString",
9973
+ fieldType: "String",
9974
9974
  },
9975
9975
  {
9976
9976
  name: "enabled",
9977
9977
 
9978
- fieldType: "UABoolean",
9978
+ fieldType: "Boolean",
9979
9979
  },
9980
9980
  {
9981
9981
  name: "dataSetWriterId",
@@ -9995,7 +9995,7 @@ const schemaDataSetWriterDataType = buildStructuredType({
9995
9995
  {
9996
9996
  name: "dataSetName",
9997
9997
 
9998
- fieldType: "UAString",
9998
+ fieldType: "String",
9999
9999
  },
10000
10000
  {
10001
10001
  name: "dataSetWriterProperties",
@@ -10091,12 +10091,12 @@ export class DataSetWriterDataType extends ExtensionObject {
10091
10091
  }
10092
10092
  public encode(stream: OutputBinaryStream): void {
10093
10093
  /* NEEDED */ super.encode(stream);
10094
- encodeUAString(this.name, stream);
10095
- encodeUABoolean(this.enabled, stream);
10094
+ encodeString(this.name, stream);
10095
+ encodeBoolean(this.enabled, stream);
10096
10096
  encodeUInt16(this.dataSetWriterId, stream);
10097
10097
  encodeDataSetFieldContentMask(this.dataSetFieldContentMask, stream);
10098
10098
  encodeUInt32(this.keyFrameCount, stream);
10099
- encodeUAString(this.dataSetName, stream);
10099
+ encodeString(this.dataSetName, stream);
10100
10100
  encodeArray(this.dataSetWriterProperties, stream, (obj, stream1) => { obj.encode(stream1); });
10101
10101
  encodeExtensionObject(this.transportSettings, stream);
10102
10102
  encodeExtensionObject(this.messageSettings, stream);
@@ -10104,12 +10104,12 @@ export class DataSetWriterDataType extends ExtensionObject {
10104
10104
  public decode(stream: BinaryStream): void {
10105
10105
  // call base class implementation first
10106
10106
  /* NEEDED !!! */ super.decode(stream);
10107
- this.name = decodeUAString(stream, this.name);
10108
- this.enabled = decodeUABoolean(stream, this.enabled);
10107
+ this.name = decodeString(stream, this.name);
10108
+ this.enabled = decodeBoolean(stream, this.enabled);
10109
10109
  this.dataSetWriterId = decodeUInt16(stream, this.dataSetWriterId);
10110
10110
  this.dataSetFieldContentMask = decodeDataSetFieldContentMask(stream, this.dataSetFieldContentMask);
10111
10111
  this.keyFrameCount = decodeUInt32(stream, this.keyFrameCount);
10112
- this.dataSetName = decodeUAString(stream, this.dataSetName);
10112
+ this.dataSetName = decodeString(stream, this.dataSetName);
10113
10113
  this.dataSetWriterProperties = decodeArray(stream, (stream1: BinaryStream) => {
10114
10114
  const obj = new KeyValuePair(null);
10115
10115
  obj.decode(stream1);
@@ -10300,7 +10300,7 @@ const schemaDataTypeAttributes = buildStructuredType({
10300
10300
  {
10301
10301
  name: "isAbstract",
10302
10302
 
10303
- fieldType: "UABoolean",
10303
+ fieldType: "Boolean",
10304
10304
  },
10305
10305
  ]
10306
10306
  });
@@ -10336,12 +10336,12 @@ export class DataTypeAttributes extends NodeAttributes {
10336
10336
  }
10337
10337
  public encode(stream: OutputBinaryStream): void {
10338
10338
  /* NEEDED */ super.encode(stream);
10339
- encodeUABoolean(this.isAbstract, stream);
10339
+ encodeBoolean(this.isAbstract, stream);
10340
10340
  }
10341
10341
  public decode(stream: BinaryStream): void {
10342
10342
  // call base class implementation first
10343
10343
  /* NEEDED !!! */ super.decode(stream);
10344
- this.isAbstract = decodeUABoolean(stream, this.isAbstract);
10344
+ this.isAbstract = decodeBoolean(stream, this.isAbstract);
10345
10345
  }
10346
10346
  public get schema(): StructuredTypeSchema { return schemaDataTypeAttributes; }
10347
10347
  }
@@ -10481,7 +10481,7 @@ const schemaReferenceNode = buildStructuredType({
10481
10481
  {
10482
10482
  name: "isInverse",
10483
10483
 
10484
- fieldType: "UABoolean",
10484
+ fieldType: "Boolean",
10485
10485
  },
10486
10486
  {
10487
10487
  name: "targetId",
@@ -10533,14 +10533,14 @@ export class ReferenceNode extends ExtensionObject {
10533
10533
  public encode(stream: OutputBinaryStream): void {
10534
10534
  /* NEEDED */ super.encode(stream);
10535
10535
  encodeNodeId(this.referenceTypeId, stream);
10536
- encodeUABoolean(this.isInverse, stream);
10536
+ encodeBoolean(this.isInverse, stream);
10537
10537
  encodeExpandedNodeId(this.targetId, stream);
10538
10538
  }
10539
10539
  public decode(stream: BinaryStream): void {
10540
10540
  // call base class implementation first
10541
10541
  /* NEEDED !!! */ super.decode(stream);
10542
10542
  this.referenceTypeId = decodeNodeId(stream, this.referenceTypeId);
10543
- this.isInverse = decodeUABoolean(stream, this.isInverse);
10543
+ this.isInverse = decodeBoolean(stream, this.isInverse);
10544
10544
  this.targetId = decodeExpandedNodeId(stream, this.targetId);
10545
10545
  }
10546
10546
  public get schema(): StructuredTypeSchema { return schemaReferenceNode; }
@@ -10842,7 +10842,7 @@ const schemaDataTypeNode = buildStructuredType({
10842
10842
  {
10843
10843
  name: "isAbstract",
10844
10844
 
10845
- fieldType: "UABoolean",
10845
+ fieldType: "Boolean",
10846
10846
  },
10847
10847
  {
10848
10848
  name: "dataTypeDefinition",
@@ -10918,7 +10918,7 @@ export class DataTypeNode extends TypeNode {
10918
10918
  encodeArray(this.rolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
10919
10919
  encodeArray(this.userRolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
10920
10920
  encodeArray(this.references, stream, (obj, stream1) => { obj.encode(stream1); });
10921
- encodeUABoolean(this.isAbstract, stream);
10921
+ encodeBoolean(this.isAbstract, stream);
10922
10922
  encodeExtensionObject(this.dataTypeDefinition, stream);
10923
10923
  }
10924
10924
  public decode(stream: BinaryStream): void {
@@ -10939,7 +10939,7 @@ export class DataTypeNode extends TypeNode {
10939
10939
  obj.decode(stream1);
10940
10940
  return obj;
10941
10941
  });
10942
- this.isAbstract = decodeUABoolean(stream, this.isAbstract);
10942
+ this.isAbstract = decodeBoolean(stream, this.isAbstract);
10943
10943
  this.dataTypeDefinition = decodeExtensionObject(stream, this.dataTypeDefinition);
10944
10944
  }
10945
10945
  public get schema(): StructuredTypeSchema { return schemaDataTypeNode; }
@@ -11027,7 +11027,7 @@ const schemaDatagramConnectionTransport2DataType = buildStructuredType({
11027
11027
  {
11028
11028
  name: "qosCategory",
11029
11029
 
11030
- fieldType: "UAString",
11030
+ fieldType: "String",
11031
11031
  },
11032
11032
  {
11033
11033
  name: "datagramQos",
@@ -11086,7 +11086,7 @@ export class DatagramConnectionTransport2DataType extends DatagramConnectionTran
11086
11086
  /* NEEDED */ super.encode(stream);
11087
11087
  encodeUInt32(this.discoveryAnnounceRate, stream);
11088
11088
  encodeUInt32(this.discoveryMaxMessageSize, stream);
11089
- encodeUAString(this.qosCategory, stream);
11089
+ encodeString(this.qosCategory, stream);
11090
11090
  encodeArray(this.datagramQos, stream, encodeExtensionObject);
11091
11091
  }
11092
11092
  public decode(stream: BinaryStream): void {
@@ -11094,7 +11094,7 @@ export class DatagramConnectionTransport2DataType extends DatagramConnectionTran
11094
11094
  /* NEEDED !!! */ super.decode(stream);
11095
11095
  this.discoveryAnnounceRate = decodeUInt32(stream, this.discoveryAnnounceRate);
11096
11096
  this.discoveryMaxMessageSize = decodeUInt32(stream, this.discoveryMaxMessageSize);
11097
- this.qosCategory = decodeUAString(stream, this.qosCategory);
11097
+ this.qosCategory = decodeString(stream, this.qosCategory);
11098
11098
  this.datagramQos = decodeArray(stream, decodeExtensionObject);
11099
11099
  }
11100
11100
  public get schema(): StructuredTypeSchema { return schemaDatagramConnectionTransport2DataType; }
@@ -11118,7 +11118,7 @@ const schemaDatagramDataSetReaderTransportDataType = buildStructuredType({
11118
11118
  {
11119
11119
  name: "qosCategory",
11120
11120
 
11121
- fieldType: "UAString",
11121
+ fieldType: "String",
11122
11122
  },
11123
11123
  {
11124
11124
  name: "datagramQos",
@@ -11129,7 +11129,7 @@ const schemaDatagramDataSetReaderTransportDataType = buildStructuredType({
11129
11129
  {
11130
11130
  name: "topic",
11131
11131
 
11132
- fieldType: "UAString",
11132
+ fieldType: "String",
11133
11133
  },
11134
11134
  ]
11135
11135
  });
@@ -11181,17 +11181,17 @@ export class DatagramDataSetReaderTransportDataType extends DataSetReaderTranspo
11181
11181
  public encode(stream: OutputBinaryStream): void {
11182
11182
  /* NEEDED */ super.encode(stream);
11183
11183
  encodeExtensionObject(this.address, stream);
11184
- encodeUAString(this.qosCategory, stream);
11184
+ encodeString(this.qosCategory, stream);
11185
11185
  encodeArray(this.datagramQos, stream, encodeExtensionObject);
11186
- encodeUAString(this.topic, stream);
11186
+ encodeString(this.topic, stream);
11187
11187
  }
11188
11188
  public decode(stream: BinaryStream): void {
11189
11189
  // call base class implementation first
11190
11190
  /* NEEDED !!! */ super.decode(stream);
11191
11191
  this.address = decodeExtensionObject(stream, this.address);
11192
- this.qosCategory = decodeUAString(stream, this.qosCategory);
11192
+ this.qosCategory = decodeString(stream, this.qosCategory);
11193
11193
  this.datagramQos = decodeArray(stream, decodeExtensionObject);
11194
- this.topic = decodeUAString(stream, this.topic);
11194
+ this.topic = decodeString(stream, this.topic);
11195
11195
  }
11196
11196
  public get schema(): StructuredTypeSchema { return schemaDatagramDataSetReaderTransportDataType; }
11197
11197
  }
@@ -11285,7 +11285,7 @@ const schemaDatagramWriterGroupTransport2DataType = buildStructuredType({
11285
11285
  {
11286
11286
  name: "qosCategory",
11287
11287
 
11288
- fieldType: "UAString",
11288
+ fieldType: "String",
11289
11289
  },
11290
11290
  {
11291
11291
  name: "datagramQos",
@@ -11301,7 +11301,7 @@ const schemaDatagramWriterGroupTransport2DataType = buildStructuredType({
11301
11301
  {
11302
11302
  name: "topic",
11303
11303
 
11304
- fieldType: "UAString",
11304
+ fieldType: "String",
11305
11305
  },
11306
11306
  ]
11307
11307
  });
@@ -11358,19 +11358,19 @@ export class DatagramWriterGroupTransport2DataType extends DatagramWriterGroupTr
11358
11358
  public encode(stream: OutputBinaryStream): void {
11359
11359
  /* NEEDED */ super.encode(stream);
11360
11360
  encodeExtensionObject(this.address, stream);
11361
- encodeUAString(this.qosCategory, stream);
11361
+ encodeString(this.qosCategory, stream);
11362
11362
  encodeArray(this.datagramQos, stream, encodeExtensionObject);
11363
11363
  encodeUInt32(this.discoveryAnnounceRate, stream);
11364
- encodeUAString(this.topic, stream);
11364
+ encodeString(this.topic, stream);
11365
11365
  }
11366
11366
  public decode(stream: BinaryStream): void {
11367
11367
  // call base class implementation first
11368
11368
  /* NEEDED !!! */ super.decode(stream);
11369
11369
  this.address = decodeExtensionObject(stream, this.address);
11370
- this.qosCategory = decodeUAString(stream, this.qosCategory);
11370
+ this.qosCategory = decodeString(stream, this.qosCategory);
11371
11371
  this.datagramQos = decodeArray(stream, decodeExtensionObject);
11372
11372
  this.discoveryAnnounceRate = decodeUInt32(stream, this.discoveryAnnounceRate);
11373
- this.topic = decodeUAString(stream, this.topic);
11373
+ this.topic = decodeString(stream, this.topic);
11374
11374
  }
11375
11375
  public get schema(): StructuredTypeSchema { return schemaDatagramWriterGroupTransport2DataType; }
11376
11376
  }
@@ -11812,7 +11812,7 @@ const schemaDeleteNodesItem = buildStructuredType({
11812
11812
  {
11813
11813
  name: "deleteTargetReferences",
11814
11814
 
11815
- fieldType: "UABoolean",
11815
+ fieldType: "Boolean",
11816
11816
  },
11817
11817
  ]
11818
11818
  });
@@ -11854,13 +11854,13 @@ export class DeleteNodesItem extends ExtensionObject {
11854
11854
  public encode(stream: OutputBinaryStream): void {
11855
11855
  /* NEEDED */ super.encode(stream);
11856
11856
  encodeNodeId(this.nodeId, stream);
11857
- encodeUABoolean(this.deleteTargetReferences, stream);
11857
+ encodeBoolean(this.deleteTargetReferences, stream);
11858
11858
  }
11859
11859
  public decode(stream: BinaryStream): void {
11860
11860
  // call base class implementation first
11861
11861
  /* NEEDED !!! */ super.decode(stream);
11862
11862
  this.nodeId = decodeNodeId(stream, this.nodeId);
11863
- this.deleteTargetReferences = decodeUABoolean(stream, this.deleteTargetReferences);
11863
+ this.deleteTargetReferences = decodeBoolean(stream, this.deleteTargetReferences);
11864
11864
  }
11865
11865
  public get schema(): StructuredTypeSchema { return schemaDeleteNodesItem; }
11866
11866
  }
@@ -12043,7 +12043,7 @@ const schemaDeleteRawModifiedDetails = buildStructuredType({
12043
12043
  {
12044
12044
  name: "isDeleteModified",
12045
12045
 
12046
- fieldType: "UABoolean",
12046
+ fieldType: "Boolean",
12047
12047
  },
12048
12048
  {
12049
12049
  name: "startTime",
@@ -12099,14 +12099,14 @@ export class DeleteRawModifiedDetails extends HistoryUpdateDetails {
12099
12099
  }
12100
12100
  public encode(stream: OutputBinaryStream): void {
12101
12101
  /* NEEDED */ super.encode(stream);
12102
- encodeUABoolean(this.isDeleteModified, stream);
12102
+ encodeBoolean(this.isDeleteModified, stream);
12103
12103
  encodeDateTime(this.startTime, stream);
12104
12104
  encodeDateTime(this.endTime, stream);
12105
12105
  }
12106
12106
  public decode(stream: BinaryStream): void {
12107
12107
  // call base class implementation first
12108
12108
  /* NEEDED !!! */ super.decode(stream);
12109
- this.isDeleteModified = decodeUABoolean(stream, this.isDeleteModified);
12109
+ this.isDeleteModified = decodeBoolean(stream, this.isDeleteModified);
12110
12110
  this.startTime = decodeDateTime(stream, this.startTime);
12111
12111
  this.endTime = decodeDateTime(stream, this.endTime);
12112
12112
  }
@@ -12136,7 +12136,7 @@ const schemaDeleteReferencesItem = buildStructuredType({
12136
12136
  {
12137
12137
  name: "isForward",
12138
12138
 
12139
- fieldType: "UABoolean",
12139
+ fieldType: "Boolean",
12140
12140
  },
12141
12141
  {
12142
12142
  name: "targetNodeId",
@@ -12146,7 +12146,7 @@ const schemaDeleteReferencesItem = buildStructuredType({
12146
12146
  {
12147
12147
  name: "deleteBidirectional",
12148
12148
 
12149
- fieldType: "UABoolean",
12149
+ fieldType: "Boolean",
12150
12150
  },
12151
12151
  ]
12152
12152
  });
@@ -12204,18 +12204,18 @@ export class DeleteReferencesItem extends ExtensionObject {
12204
12204
  /* NEEDED */ super.encode(stream);
12205
12205
  encodeNodeId(this.sourceNodeId, stream);
12206
12206
  encodeNodeId(this.referenceTypeId, stream);
12207
- encodeUABoolean(this.isForward, stream);
12207
+ encodeBoolean(this.isForward, stream);
12208
12208
  encodeExpandedNodeId(this.targetNodeId, stream);
12209
- encodeUABoolean(this.deleteBidirectional, stream);
12209
+ encodeBoolean(this.deleteBidirectional, stream);
12210
12210
  }
12211
12211
  public decode(stream: BinaryStream): void {
12212
12212
  // call base class implementation first
12213
12213
  /* NEEDED !!! */ super.decode(stream);
12214
12214
  this.sourceNodeId = decodeNodeId(stream, this.sourceNodeId);
12215
12215
  this.referenceTypeId = decodeNodeId(stream, this.referenceTypeId);
12216
- this.isForward = decodeUABoolean(stream, this.isForward);
12216
+ this.isForward = decodeBoolean(stream, this.isForward);
12217
12217
  this.targetNodeId = decodeExpandedNodeId(stream, this.targetNodeId);
12218
- this.deleteBidirectional = decodeUABoolean(stream, this.deleteBidirectional);
12218
+ this.deleteBidirectional = decodeBoolean(stream, this.deleteBidirectional);
12219
12219
  }
12220
12220
  public get schema(): StructuredTypeSchema { return schemaDeleteReferencesItem; }
12221
12221
  }
@@ -12738,7 +12738,7 @@ const schemaEndpointConfiguration = buildStructuredType({
12738
12738
  {
12739
12739
  name: "useBinaryEncoding",
12740
12740
 
12741
- fieldType: "UABoolean",
12741
+ fieldType: "Boolean",
12742
12742
  },
12743
12743
  {
12744
12744
  name: "maxStringLength",
@@ -12850,7 +12850,7 @@ export class EndpointConfiguration extends ExtensionObject {
12850
12850
  public encode(stream: OutputBinaryStream): void {
12851
12851
  /* NEEDED */ super.encode(stream);
12852
12852
  encodeInt32(this.operationTimeout, stream);
12853
- encodeUABoolean(this.useBinaryEncoding, stream);
12853
+ encodeBoolean(this.useBinaryEncoding, stream);
12854
12854
  encodeInt32(this.maxStringLength, stream);
12855
12855
  encodeInt32(this.maxByteStringLength, stream);
12856
12856
  encodeInt32(this.maxArrayLength, stream);
@@ -12863,7 +12863,7 @@ export class EndpointConfiguration extends ExtensionObject {
12863
12863
  // call base class implementation first
12864
12864
  /* NEEDED !!! */ super.decode(stream);
12865
12865
  this.operationTimeout = decodeInt32(stream, this.operationTimeout);
12866
- this.useBinaryEncoding = decodeUABoolean(stream, this.useBinaryEncoding);
12866
+ this.useBinaryEncoding = decodeBoolean(stream, this.useBinaryEncoding);
12867
12867
  this.maxStringLength = decodeInt32(stream, this.maxStringLength);
12868
12868
  this.maxByteStringLength = decodeInt32(stream, this.maxByteStringLength);
12869
12869
  this.maxArrayLength = decodeInt32(stream, this.maxArrayLength);
@@ -12888,7 +12888,7 @@ const schemaEndpointType = buildStructuredType({
12888
12888
  {
12889
12889
  name: "endpointUrl",
12890
12890
 
12891
- fieldType: "UAString",
12891
+ fieldType: "String",
12892
12892
  },
12893
12893
  {
12894
12894
  name: "securityMode",
@@ -12898,12 +12898,12 @@ const schemaEndpointType = buildStructuredType({
12898
12898
  {
12899
12899
  name: "securityPolicyUri",
12900
12900
 
12901
- fieldType: "UAString",
12901
+ fieldType: "String",
12902
12902
  },
12903
12903
  {
12904
12904
  name: "transportProfileUri",
12905
12905
 
12906
- fieldType: "UAString",
12906
+ fieldType: "String",
12907
12907
  },
12908
12908
  ]
12909
12909
  });
@@ -12954,18 +12954,18 @@ export class EndpointType extends ExtensionObject {
12954
12954
  }
12955
12955
  public encode(stream: OutputBinaryStream): void {
12956
12956
  /* NEEDED */ super.encode(stream);
12957
- encodeUAString(this.endpointUrl, stream);
12957
+ encodeString(this.endpointUrl, stream);
12958
12958
  encodeMessageSecurityMode(this.securityMode, stream);
12959
- encodeUAString(this.securityPolicyUri, stream);
12960
- encodeUAString(this.transportProfileUri, stream);
12959
+ encodeString(this.securityPolicyUri, stream);
12960
+ encodeString(this.transportProfileUri, stream);
12961
12961
  }
12962
12962
  public decode(stream: BinaryStream): void {
12963
12963
  // call base class implementation first
12964
12964
  /* NEEDED !!! */ super.decode(stream);
12965
- this.endpointUrl = decodeUAString(stream, this.endpointUrl);
12965
+ this.endpointUrl = decodeString(stream, this.endpointUrl);
12966
12966
  this.securityMode = decodeMessageSecurityMode(stream, this.securityMode);
12967
- this.securityPolicyUri = decodeUAString(stream, this.securityPolicyUri);
12968
- this.transportProfileUri = decodeUAString(stream, this.transportProfileUri);
12967
+ this.securityPolicyUri = decodeString(stream, this.securityPolicyUri);
12968
+ this.transportProfileUri = decodeString(stream, this.transportProfileUri);
12969
12969
  }
12970
12970
 
12971
12971
  // Define Enumeration setters
@@ -12994,7 +12994,7 @@ const schemaEndpointUrlListDataType = buildStructuredType({
12994
12994
  {
12995
12995
  name: "endpointUrlList",
12996
12996
 
12997
- fieldType: "UAString",
12997
+ fieldType: "String",
12998
12998
  isArray: true
12999
12999
  },
13000
13000
  ]
@@ -13031,12 +13031,12 @@ export class EndpointUrlListDataType extends ExtensionObject {
13031
13031
  }
13032
13032
  public encode(stream: OutputBinaryStream): void {
13033
13033
  /* NEEDED */ super.encode(stream);
13034
- encodeArray(this.endpointUrlList, stream, encodeUAString);
13034
+ encodeArray(this.endpointUrlList, stream, encodeString);
13035
13035
  }
13036
13036
  public decode(stream: BinaryStream): void {
13037
13037
  // call base class implementation first
13038
13038
  /* NEEDED !!! */ super.decode(stream);
13039
- this.endpointUrlList = decodeArray(stream, decodeUAString);
13039
+ this.endpointUrlList = decodeArray(stream, decodeString);
13040
13040
  }
13041
13041
  public get schema(): StructuredTypeSchema { return schemaEndpointUrlListDataType; }
13042
13042
  }
@@ -13460,7 +13460,7 @@ const schemaFieldTargetDataType = buildStructuredType({
13460
13460
  {
13461
13461
  name: "receiverIndexRange",
13462
13462
 
13463
- fieldType: "UAString",
13463
+ fieldType: "String",
13464
13464
  },
13465
13465
  {
13466
13466
  name: "targetNodeId",
@@ -13475,7 +13475,7 @@ const schemaFieldTargetDataType = buildStructuredType({
13475
13475
  {
13476
13476
  name: "writeIndexRange",
13477
13477
 
13478
- fieldType: "UAString",
13478
+ fieldType: "String",
13479
13479
  },
13480
13480
  {
13481
13481
  name: "overrideValueHandling",
@@ -13552,10 +13552,10 @@ export class FieldTargetDataType extends ExtensionObject {
13552
13552
  public encode(stream: OutputBinaryStream): void {
13553
13553
  /* NEEDED */ super.encode(stream);
13554
13554
  encodeGuid(this.dataSetFieldId, stream);
13555
- encodeUAString(this.receiverIndexRange, stream);
13555
+ encodeString(this.receiverIndexRange, stream);
13556
13556
  encodeNodeId(this.targetNodeId, stream);
13557
13557
  encodeUInt32(this.attributeId, stream);
13558
- encodeUAString(this.writeIndexRange, stream);
13558
+ encodeString(this.writeIndexRange, stream);
13559
13559
  encodeOverrideValueHandling(this.overrideValueHandling, stream);
13560
13560
  encodeVariant(this.overrideValue, stream);
13561
13561
  }
@@ -13563,10 +13563,10 @@ export class FieldTargetDataType extends ExtensionObject {
13563
13563
  // call base class implementation first
13564
13564
  /* NEEDED !!! */ super.decode(stream);
13565
13565
  this.dataSetFieldId = decodeGuid(stream, this.dataSetFieldId);
13566
- this.receiverIndexRange = decodeUAString(stream, this.receiverIndexRange);
13566
+ this.receiverIndexRange = decodeString(stream, this.receiverIndexRange);
13567
13567
  this.targetNodeId = decodeNodeId(stream, this.targetNodeId);
13568
13568
  this.attributeId = decodeUInt32(stream, this.attributeId);
13569
- this.writeIndexRange = decodeUAString(stream, this.writeIndexRange);
13569
+ this.writeIndexRange = decodeString(stream, this.writeIndexRange);
13570
13570
  this.overrideValueHandling = decodeOverrideValueHandling(stream, this.overrideValueHandling);
13571
13571
  this.overrideValue = decodeVariant(stream, this.overrideValue);
13572
13572
  }
@@ -13612,7 +13612,7 @@ const schemaFindServersOnNetworkRequest = buildStructuredType({
13612
13612
  {
13613
13613
  name: "serverCapabilityFilter",
13614
13614
 
13615
- fieldType: "UAString",
13615
+ fieldType: "String",
13616
13616
  isArray: true
13617
13617
  },
13618
13618
  ]
@@ -13667,7 +13667,7 @@ export class FindServersOnNetworkRequest extends ExtensionObject {
13667
13667
  this.requestHeader.encode(stream);
13668
13668
  encodeUInt32(this.startingRecordId, stream);
13669
13669
  encodeUInt32(this.maxRecordsToReturn, stream);
13670
- encodeArray(this.serverCapabilityFilter, stream, encodeUAString);
13670
+ encodeArray(this.serverCapabilityFilter, stream, encodeString);
13671
13671
  }
13672
13672
  public decode(stream: BinaryStream): void {
13673
13673
  // call base class implementation first
@@ -13675,7 +13675,7 @@ export class FindServersOnNetworkRequest extends ExtensionObject {
13675
13675
  this.requestHeader.decode(stream);
13676
13676
  this.startingRecordId = decodeUInt32(stream, this.startingRecordId);
13677
13677
  this.maxRecordsToReturn = decodeUInt32(stream, this.maxRecordsToReturn);
13678
- this.serverCapabilityFilter = decodeArray(stream, decodeUAString);
13678
+ this.serverCapabilityFilter = decodeArray(stream, decodeString);
13679
13679
  }
13680
13680
  public get schema(): StructuredTypeSchema { return schemaFindServersOnNetworkRequest; }
13681
13681
  }
@@ -13698,17 +13698,17 @@ const schemaServerOnNetwork = buildStructuredType({
13698
13698
  {
13699
13699
  name: "serverName",
13700
13700
 
13701
- fieldType: "UAString",
13701
+ fieldType: "String",
13702
13702
  },
13703
13703
  {
13704
13704
  name: "discoveryUrl",
13705
13705
 
13706
- fieldType: "UAString",
13706
+ fieldType: "String",
13707
13707
  },
13708
13708
  {
13709
13709
  name: "serverCapabilities",
13710
13710
 
13711
- fieldType: "UAString",
13711
+ fieldType: "String",
13712
13712
  isArray: true
13713
13713
  },
13714
13714
  ]
@@ -13761,17 +13761,17 @@ export class ServerOnNetwork extends ExtensionObject {
13761
13761
  public encode(stream: OutputBinaryStream): void {
13762
13762
  /* NEEDED */ super.encode(stream);
13763
13763
  encodeUInt32(this.recordId, stream);
13764
- encodeUAString(this.serverName, stream);
13765
- encodeUAString(this.discoveryUrl, stream);
13766
- encodeArray(this.serverCapabilities, stream, encodeUAString);
13764
+ encodeString(this.serverName, stream);
13765
+ encodeString(this.discoveryUrl, stream);
13766
+ encodeArray(this.serverCapabilities, stream, encodeString);
13767
13767
  }
13768
13768
  public decode(stream: BinaryStream): void {
13769
13769
  // call base class implementation first
13770
13770
  /* NEEDED !!! */ super.decode(stream);
13771
13771
  this.recordId = decodeUInt32(stream, this.recordId);
13772
- this.serverName = decodeUAString(stream, this.serverName);
13773
- this.discoveryUrl = decodeUAString(stream, this.discoveryUrl);
13774
- this.serverCapabilities = decodeArray(stream, decodeUAString);
13772
+ this.serverName = decodeString(stream, this.serverName);
13773
+ this.discoveryUrl = decodeString(stream, this.discoveryUrl);
13774
+ this.serverCapabilities = decodeArray(stream, decodeString);
13775
13775
  }
13776
13776
  public get schema(): StructuredTypeSchema { return schemaServerOnNetwork; }
13777
13777
  }
@@ -13886,18 +13886,18 @@ const schemaFindServersRequest = buildStructuredType({
13886
13886
  {
13887
13887
  name: "endpointUrl",
13888
13888
 
13889
- fieldType: "UAString",
13889
+ fieldType: "String",
13890
13890
  },
13891
13891
  {
13892
13892
  name: "localeIds",
13893
13893
 
13894
- fieldType: "UAString",
13894
+ fieldType: "String",
13895
13895
  isArray: true
13896
13896
  },
13897
13897
  {
13898
13898
  name: "serverUris",
13899
13899
 
13900
- fieldType: "UAString",
13900
+ fieldType: "String",
13901
13901
  isArray: true
13902
13902
  },
13903
13903
  ]
@@ -13950,17 +13950,17 @@ export class FindServersRequest extends ExtensionObject {
13950
13950
  public encode(stream: OutputBinaryStream): void {
13951
13951
  /* NEEDED */ super.encode(stream);
13952
13952
  this.requestHeader.encode(stream);
13953
- encodeUAString(this.endpointUrl, stream);
13954
- encodeArray(this.localeIds, stream, encodeUAString);
13955
- encodeArray(this.serverUris, stream, encodeUAString);
13953
+ encodeString(this.endpointUrl, stream);
13954
+ encodeArray(this.localeIds, stream, encodeString);
13955
+ encodeArray(this.serverUris, stream, encodeString);
13956
13956
  }
13957
13957
  public decode(stream: BinaryStream): void {
13958
13958
  // call base class implementation first
13959
13959
  /* NEEDED !!! */ super.decode(stream);
13960
13960
  this.requestHeader.decode(stream);
13961
- this.endpointUrl = decodeUAString(stream, this.endpointUrl);
13962
- this.localeIds = decodeArray(stream, decodeUAString);
13963
- this.serverUris = decodeArray(stream, decodeUAString);
13961
+ this.endpointUrl = decodeString(stream, this.endpointUrl);
13962
+ this.localeIds = decodeArray(stream, decodeString);
13963
+ this.serverUris = decodeArray(stream, decodeString);
13964
13964
  }
13965
13965
  public get schema(): StructuredTypeSchema { return schemaFindServersRequest; }
13966
13966
  }
@@ -14250,18 +14250,18 @@ const schemaGetEndpointsRequest = buildStructuredType({
14250
14250
  {
14251
14251
  name: "endpointUrl",
14252
14252
 
14253
- fieldType: "UAString",
14253
+ fieldType: "String",
14254
14254
  },
14255
14255
  {
14256
14256
  name: "localeIds",
14257
14257
 
14258
- fieldType: "UAString",
14258
+ fieldType: "String",
14259
14259
  isArray: true
14260
14260
  },
14261
14261
  {
14262
14262
  name: "profileUris",
14263
14263
 
14264
- fieldType: "UAString",
14264
+ fieldType: "String",
14265
14265
  isArray: true
14266
14266
  },
14267
14267
  ]
@@ -14314,17 +14314,17 @@ export class GetEndpointsRequest extends ExtensionObject {
14314
14314
  public encode(stream: OutputBinaryStream): void {
14315
14315
  /* NEEDED */ super.encode(stream);
14316
14316
  this.requestHeader.encode(stream);
14317
- encodeUAString(this.endpointUrl, stream);
14318
- encodeArray(this.localeIds, stream, encodeUAString);
14319
- encodeArray(this.profileUris, stream, encodeUAString);
14317
+ encodeString(this.endpointUrl, stream);
14318
+ encodeArray(this.localeIds, stream, encodeString);
14319
+ encodeArray(this.profileUris, stream, encodeString);
14320
14320
  }
14321
14321
  public decode(stream: BinaryStream): void {
14322
14322
  // call base class implementation first
14323
14323
  /* NEEDED !!! */ super.decode(stream);
14324
14324
  this.requestHeader.decode(stream);
14325
- this.endpointUrl = decodeUAString(stream, this.endpointUrl);
14326
- this.localeIds = decodeArray(stream, decodeUAString);
14327
- this.profileUris = decodeArray(stream, decodeUAString);
14325
+ this.endpointUrl = decodeString(stream, this.endpointUrl);
14326
+ this.localeIds = decodeArray(stream, decodeString);
14327
+ this.profileUris = decodeArray(stream, decodeString);
14328
14328
  }
14329
14329
  public get schema(): StructuredTypeSchema { return schemaGetEndpointsRequest; }
14330
14330
  }
@@ -14646,7 +14646,7 @@ const schemaModificationInfo = buildStructuredType({
14646
14646
  {
14647
14647
  name: "userName",
14648
14648
 
14649
- fieldType: "UAString",
14649
+ fieldType: "String",
14650
14650
  },
14651
14651
  ]
14652
14652
  });
@@ -14694,14 +14694,14 @@ export class ModificationInfo extends ExtensionObject {
14694
14694
  /* NEEDED */ super.encode(stream);
14695
14695
  encodeDateTime(this.modificationTime, stream);
14696
14696
  encodeHistoryUpdateType(this.updateType, stream);
14697
- encodeUAString(this.userName, stream);
14697
+ encodeString(this.userName, stream);
14698
14698
  }
14699
14699
  public decode(stream: BinaryStream): void {
14700
14700
  // call base class implementation first
14701
14701
  /* NEEDED !!! */ super.decode(stream);
14702
14702
  this.modificationTime = decodeDateTime(stream, this.modificationTime);
14703
14703
  this.updateType = decodeHistoryUpdateType(stream, this.updateType);
14704
- this.userName = decodeUAString(stream, this.userName);
14704
+ this.userName = decodeString(stream, this.userName);
14705
14705
  }
14706
14706
 
14707
14707
  // Define Enumeration setters
@@ -14956,7 +14956,7 @@ const schemaHistoryReadRequest = buildStructuredType({
14956
14956
  {
14957
14957
  name: "releaseContinuationPoints",
14958
14958
 
14959
- fieldType: "UABoolean",
14959
+ fieldType: "Boolean",
14960
14960
  },
14961
14961
  {
14962
14962
  name: "nodesToRead",
@@ -15025,7 +15025,7 @@ export class HistoryReadRequest extends ExtensionObject {
15025
15025
  this.requestHeader.encode(stream);
15026
15026
  encodeExtensionObject(this.historyReadDetails, stream);
15027
15027
  encodeTimestampsToReturn(this.timestampsToReturn, stream);
15028
- encodeUABoolean(this.releaseContinuationPoints, stream);
15028
+ encodeBoolean(this.releaseContinuationPoints, stream);
15029
15029
  encodeArray(this.nodesToRead, stream, (obj, stream1) => { obj.encode(stream1); });
15030
15030
  }
15031
15031
  public decode(stream: BinaryStream): void {
@@ -15034,7 +15034,7 @@ export class HistoryReadRequest extends ExtensionObject {
15034
15034
  this.requestHeader.decode(stream);
15035
15035
  this.historyReadDetails = decodeExtensionObject(stream, this.historyReadDetails);
15036
15036
  this.timestampsToReturn = decodeTimestampsToReturn(stream, this.timestampsToReturn);
15037
- this.releaseContinuationPoints = decodeUABoolean(stream, this.releaseContinuationPoints);
15037
+ this.releaseContinuationPoints = decodeBoolean(stream, this.releaseContinuationPoints);
15038
15038
  this.nodesToRead = decodeArray(stream, (stream1: BinaryStream) => {
15039
15039
  const obj = new HistoryReadValueId(null);
15040
15040
  obj.decode(stream1);
@@ -15529,7 +15529,7 @@ const schemaIdentityMappingRuleType = buildStructuredType({
15529
15529
  {
15530
15530
  name: "criteria",
15531
15531
 
15532
- fieldType: "UAString",
15532
+ fieldType: "String",
15533
15533
  },
15534
15534
  ]
15535
15535
  });
@@ -15571,13 +15571,13 @@ export class IdentityMappingRuleType extends ExtensionObject {
15571
15571
  public encode(stream: OutputBinaryStream): void {
15572
15572
  /* NEEDED */ super.encode(stream);
15573
15573
  encodeIdentityCriteriaType(this.criteriaType, stream);
15574
- encodeUAString(this.criteria, stream);
15574
+ encodeString(this.criteria, stream);
15575
15575
  }
15576
15576
  public decode(stream: BinaryStream): void {
15577
15577
  // call base class implementation first
15578
15578
  /* NEEDED !!! */ super.decode(stream);
15579
15579
  this.criteriaType = decodeIdentityCriteriaType(stream, this.criteriaType);
15580
- this.criteria = decodeUAString(stream, this.criteria);
15580
+ this.criteria = decodeString(stream, this.criteria);
15581
15581
  }
15582
15582
 
15583
15583
  // Define Enumeration setters
@@ -15659,7 +15659,7 @@ const schemaIssuedIdentityToken = buildStructuredType({
15659
15659
  {
15660
15660
  name: "encryptionAlgorithm",
15661
15661
 
15662
- fieldType: "UAString",
15662
+ fieldType: "String",
15663
15663
  },
15664
15664
  ]
15665
15665
  });
@@ -15701,13 +15701,13 @@ export class IssuedIdentityToken extends UserIdentityToken {
15701
15701
  public encode(stream: OutputBinaryStream): void {
15702
15702
  /* NEEDED */ super.encode(stream);
15703
15703
  encodeByteString(this.tokenData, stream);
15704
- encodeUAString(this.encryptionAlgorithm, stream);
15704
+ encodeString(this.encryptionAlgorithm, stream);
15705
15705
  }
15706
15706
  public decode(stream: BinaryStream): void {
15707
15707
  // call base class implementation first
15708
15708
  /* NEEDED !!! */ super.decode(stream);
15709
15709
  this.tokenData = decodeByteString(stream, this.tokenData);
15710
- this.encryptionAlgorithm = decodeUAString(stream, this.encryptionAlgorithm);
15710
+ this.encryptionAlgorithm = decodeString(stream, this.encryptionAlgorithm);
15711
15711
  }
15712
15712
  public get schema(): StructuredTypeSchema { return schemaIssuedIdentityToken; }
15713
15713
  }
@@ -16113,12 +16113,12 @@ const schemaMdnsDiscoveryConfiguration = buildStructuredType({
16113
16113
  {
16114
16114
  name: "mdnsServerName",
16115
16115
 
16116
- fieldType: "UAString",
16116
+ fieldType: "String",
16117
16117
  },
16118
16118
  {
16119
16119
  name: "serverCapabilities",
16120
16120
 
16121
- fieldType: "UAString",
16121
+ fieldType: "String",
16122
16122
  isArray: true
16123
16123
  },
16124
16124
  ]
@@ -16160,14 +16160,14 @@ export class MdnsDiscoveryConfiguration extends DiscoveryConfiguration {
16160
16160
  }
16161
16161
  public encode(stream: OutputBinaryStream): void {
16162
16162
  /* NEEDED */ super.encode(stream);
16163
- encodeUAString(this.mdnsServerName, stream);
16164
- encodeArray(this.serverCapabilities, stream, encodeUAString);
16163
+ encodeString(this.mdnsServerName, stream);
16164
+ encodeArray(this.serverCapabilities, stream, encodeString);
16165
16165
  }
16166
16166
  public decode(stream: BinaryStream): void {
16167
16167
  // call base class implementation first
16168
16168
  /* NEEDED !!! */ super.decode(stream);
16169
- this.mdnsServerName = decodeUAString(stream, this.mdnsServerName);
16170
- this.serverCapabilities = decodeArray(stream, decodeUAString);
16169
+ this.mdnsServerName = decodeString(stream, this.mdnsServerName);
16170
+ this.serverCapabilities = decodeArray(stream, decodeString);
16171
16171
  }
16172
16172
  public get schema(): StructuredTypeSchema { return schemaMdnsDiscoveryConfiguration; }
16173
16173
  }
@@ -16185,12 +16185,12 @@ const schemaMethodAttributes = buildStructuredType({
16185
16185
  {
16186
16186
  name: "executable",
16187
16187
 
16188
- fieldType: "UABoolean",
16188
+ fieldType: "Boolean",
16189
16189
  },
16190
16190
  {
16191
16191
  name: "userExecutable",
16192
16192
 
16193
- fieldType: "UABoolean",
16193
+ fieldType: "Boolean",
16194
16194
  },
16195
16195
  ]
16196
16196
  });
@@ -16231,14 +16231,14 @@ export class MethodAttributes extends NodeAttributes {
16231
16231
  }
16232
16232
  public encode(stream: OutputBinaryStream): void {
16233
16233
  /* NEEDED */ super.encode(stream);
16234
- encodeUABoolean(this.executable, stream);
16235
- encodeUABoolean(this.userExecutable, stream);
16234
+ encodeBoolean(this.executable, stream);
16235
+ encodeBoolean(this.userExecutable, stream);
16236
16236
  }
16237
16237
  public decode(stream: BinaryStream): void {
16238
16238
  // call base class implementation first
16239
16239
  /* NEEDED !!! */ super.decode(stream);
16240
- this.executable = decodeUABoolean(stream, this.executable);
16241
- this.userExecutable = decodeUABoolean(stream, this.userExecutable);
16240
+ this.executable = decodeBoolean(stream, this.executable);
16241
+ this.userExecutable = decodeBoolean(stream, this.userExecutable);
16242
16242
  }
16243
16243
  public get schema(): StructuredTypeSchema { return schemaMethodAttributes; }
16244
16244
  }
@@ -16274,12 +16274,12 @@ const schemaMethodNode = buildStructuredType({
16274
16274
  {
16275
16275
  name: "executable",
16276
16276
 
16277
- fieldType: "UABoolean",
16277
+ fieldType: "Boolean",
16278
16278
  },
16279
16279
  {
16280
16280
  name: "userExecutable",
16281
16281
 
16282
- fieldType: "UABoolean",
16282
+ fieldType: "Boolean",
16283
16283
  },
16284
16284
  ]
16285
16285
  });
@@ -16350,8 +16350,8 @@ export class MethodNode extends InstanceNode {
16350
16350
  encodeArray(this.rolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
16351
16351
  encodeArray(this.userRolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
16352
16352
  encodeArray(this.references, stream, (obj, stream1) => { obj.encode(stream1); });
16353
- encodeUABoolean(this.executable, stream);
16354
- encodeUABoolean(this.userExecutable, stream);
16353
+ encodeBoolean(this.executable, stream);
16354
+ encodeBoolean(this.userExecutable, stream);
16355
16355
  }
16356
16356
  public decode(stream: BinaryStream): void {
16357
16357
  // call base class implementation first
@@ -16371,8 +16371,8 @@ export class MethodNode extends InstanceNode {
16371
16371
  obj.decode(stream1);
16372
16372
  return obj;
16373
16373
  });
16374
- this.executable = decodeUABoolean(stream, this.executable);
16375
- this.userExecutable = decodeUABoolean(stream, this.userExecutable);
16374
+ this.executable = decodeBoolean(stream, this.executable);
16375
+ this.userExecutable = decodeBoolean(stream, this.userExecutable);
16376
16376
  }
16377
16377
  public get schema(): StructuredTypeSchema { return schemaMethodNode; }
16378
16378
  }
@@ -17073,7 +17073,7 @@ const schemaNetworkAddressDataType = buildStructuredType({
17073
17073
  {
17074
17074
  name: "networkInterface",
17075
17075
 
17076
- fieldType: "UAString",
17076
+ fieldType: "String",
17077
17077
  },
17078
17078
  ]
17079
17079
  });
@@ -17109,12 +17109,12 @@ export class NetworkAddressDataType extends ExtensionObject {
17109
17109
  }
17110
17110
  public encode(stream: OutputBinaryStream): void {
17111
17111
  /* NEEDED */ super.encode(stream);
17112
- encodeUAString(this.networkInterface, stream);
17112
+ encodeString(this.networkInterface, stream);
17113
17113
  }
17114
17114
  public decode(stream: BinaryStream): void {
17115
17115
  // call base class implementation first
17116
17116
  /* NEEDED !!! */ super.decode(stream);
17117
- this.networkInterface = decodeUAString(stream, this.networkInterface);
17117
+ this.networkInterface = decodeString(stream, this.networkInterface);
17118
17118
  }
17119
17119
  public get schema(): StructuredTypeSchema { return schemaNetworkAddressDataType; }
17120
17120
  }
@@ -17132,7 +17132,7 @@ const schemaNetworkAddressUrlDataType = buildStructuredType({
17132
17132
  {
17133
17133
  name: "url",
17134
17134
 
17135
- fieldType: "UAString",
17135
+ fieldType: "String",
17136
17136
  },
17137
17137
  ]
17138
17138
  });
@@ -17168,12 +17168,12 @@ export class NetworkAddressUrlDataType extends NetworkAddressDataType {
17168
17168
  }
17169
17169
  public encode(stream: OutputBinaryStream): void {
17170
17170
  /* NEEDED */ super.encode(stream);
17171
- encodeUAString(this.url, stream);
17171
+ encodeString(this.url, stream);
17172
17172
  }
17173
17173
  public decode(stream: BinaryStream): void {
17174
17174
  // call base class implementation first
17175
17175
  /* NEEDED !!! */ super.decode(stream);
17176
- this.url = decodeUAString(stream, this.url);
17176
+ this.url = decodeString(stream, this.url);
17177
17177
  }
17178
17178
  public get schema(): StructuredTypeSchema { return schemaNetworkAddressUrlDataType; }
17179
17179
  }
@@ -17191,7 +17191,7 @@ const schemaNetworkGroupDataType = buildStructuredType({
17191
17191
  {
17192
17192
  name: "serverUri",
17193
17193
 
17194
- fieldType: "UAString",
17194
+ fieldType: "String",
17195
17195
  },
17196
17196
  {
17197
17197
  name: "networkPaths",
@@ -17242,13 +17242,13 @@ export class NetworkGroupDataType extends ExtensionObject {
17242
17242
  }
17243
17243
  public encode(stream: OutputBinaryStream): void {
17244
17244
  /* NEEDED */ super.encode(stream);
17245
- encodeUAString(this.serverUri, stream);
17245
+ encodeString(this.serverUri, stream);
17246
17246
  encodeArray(this.networkPaths, stream, (obj, stream1) => { obj.encode(stream1); });
17247
17247
  }
17248
17248
  public decode(stream: BinaryStream): void {
17249
17249
  // call base class implementation first
17250
17250
  /* NEEDED !!! */ super.decode(stream);
17251
- this.serverUri = decodeUAString(stream, this.serverUri);
17251
+ this.serverUri = decodeString(stream, this.serverUri);
17252
17252
  this.networkPaths = decodeArray(stream, (stream1: BinaryStream) => {
17253
17253
  const obj = new EndpointUrlListDataType(null);
17254
17254
  obj.decode(stream1);
@@ -17281,7 +17281,7 @@ const schemaNodeReference = buildStructuredType({
17281
17281
  {
17282
17282
  name: "isForward",
17283
17283
 
17284
- fieldType: "UABoolean",
17284
+ fieldType: "Boolean",
17285
17285
  },
17286
17286
  {
17287
17287
  name: "referencedNodeIds",
@@ -17340,7 +17340,7 @@ export class NodeReference extends ExtensionObject {
17340
17340
  /* NEEDED */ super.encode(stream);
17341
17341
  encodeNodeId(this.nodeId, stream);
17342
17342
  encodeNodeId(this.referenceTypeId, stream);
17343
- encodeUABoolean(this.isForward, stream);
17343
+ encodeBoolean(this.isForward, stream);
17344
17344
  encodeArray(this.referencedNodeIds, stream, encodeNodeId);
17345
17345
  }
17346
17346
  public decode(stream: BinaryStream): void {
@@ -17348,7 +17348,7 @@ export class NodeReference extends ExtensionObject {
17348
17348
  /* NEEDED !!! */ super.decode(stream);
17349
17349
  this.nodeId = decodeNodeId(stream, this.nodeId);
17350
17350
  this.referenceTypeId = decodeNodeId(stream, this.referenceTypeId);
17351
- this.isForward = decodeUABoolean(stream, this.isForward);
17351
+ this.isForward = decodeBoolean(stream, this.isForward);
17352
17352
  this.referencedNodeIds = decodeArray(stream, decodeNodeId);
17353
17353
  }
17354
17354
  public get schema(): StructuredTypeSchema { return schemaNodeReference; }
@@ -17455,7 +17455,7 @@ const schemaNodeTypeDescription = buildStructuredType({
17455
17455
  {
17456
17456
  name: "includeSubTypes",
17457
17457
 
17458
- fieldType: "UABoolean",
17458
+ fieldType: "Boolean",
17459
17459
  },
17460
17460
  {
17461
17461
  name: "dataToReturn",
@@ -17512,14 +17512,14 @@ export class NodeTypeDescription extends ExtensionObject {
17512
17512
  public encode(stream: OutputBinaryStream): void {
17513
17513
  /* NEEDED */ super.encode(stream);
17514
17514
  encodeExpandedNodeId(this.typeDefinitionNode, stream);
17515
- encodeUABoolean(this.includeSubTypes, stream);
17515
+ encodeBoolean(this.includeSubTypes, stream);
17516
17516
  encodeArray(this.dataToReturn, stream, (obj, stream1) => { obj.encode(stream1); });
17517
17517
  }
17518
17518
  public decode(stream: BinaryStream): void {
17519
17519
  // call base class implementation first
17520
17520
  /* NEEDED !!! */ super.decode(stream);
17521
17521
  this.typeDefinitionNode = decodeExpandedNodeId(stream, this.typeDefinitionNode);
17522
- this.includeSubTypes = decodeUABoolean(stream, this.includeSubTypes);
17522
+ this.includeSubTypes = decodeBoolean(stream, this.includeSubTypes);
17523
17523
  this.dataToReturn = decodeArray(stream, (stream1: BinaryStream) => {
17524
17524
  const obj = new QueryDataDescription(null);
17525
17525
  obj.decode(stream1);
@@ -17807,7 +17807,7 @@ const schemaObjectTypeAttributes = buildStructuredType({
17807
17807
  {
17808
17808
  name: "isAbstract",
17809
17809
 
17810
- fieldType: "UABoolean",
17810
+ fieldType: "Boolean",
17811
17811
  },
17812
17812
  ]
17813
17813
  });
@@ -17843,12 +17843,12 @@ export class ObjectTypeAttributes extends NodeAttributes {
17843
17843
  }
17844
17844
  public encode(stream: OutputBinaryStream): void {
17845
17845
  /* NEEDED */ super.encode(stream);
17846
- encodeUABoolean(this.isAbstract, stream);
17846
+ encodeBoolean(this.isAbstract, stream);
17847
17847
  }
17848
17848
  public decode(stream: BinaryStream): void {
17849
17849
  // call base class implementation first
17850
17850
  /* NEEDED !!! */ super.decode(stream);
17851
- this.isAbstract = decodeUABoolean(stream, this.isAbstract);
17851
+ this.isAbstract = decodeBoolean(stream, this.isAbstract);
17852
17852
  }
17853
17853
  public get schema(): StructuredTypeSchema { return schemaObjectTypeAttributes; }
17854
17854
  }
@@ -17884,7 +17884,7 @@ const schemaObjectTypeNode = buildStructuredType({
17884
17884
  {
17885
17885
  name: "isAbstract",
17886
17886
 
17887
- fieldType: "UABoolean",
17887
+ fieldType: "Boolean",
17888
17888
  },
17889
17889
  ]
17890
17890
  });
@@ -17950,7 +17950,7 @@ export class ObjectTypeNode extends TypeNode {
17950
17950
  encodeArray(this.rolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
17951
17951
  encodeArray(this.userRolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
17952
17952
  encodeArray(this.references, stream, (obj, stream1) => { obj.encode(stream1); });
17953
- encodeUABoolean(this.isAbstract, stream);
17953
+ encodeBoolean(this.isAbstract, stream);
17954
17954
  }
17955
17955
  public decode(stream: BinaryStream): void {
17956
17956
  // call base class implementation first
@@ -17970,7 +17970,7 @@ export class ObjectTypeNode extends TypeNode {
17970
17970
  obj.decode(stream1);
17971
17971
  return obj;
17972
17972
  });
17973
- this.isAbstract = decodeUABoolean(stream, this.isAbstract);
17973
+ this.isAbstract = decodeBoolean(stream, this.isAbstract);
17974
17974
  }
17975
17975
  public get schema(): StructuredTypeSchema { return schemaObjectTypeNode; }
17976
17976
  }
@@ -18450,7 +18450,7 @@ const schemaPortableNodeId = buildStructuredType({
18450
18450
  {
18451
18451
  name: "namespaceUri",
18452
18452
 
18453
- fieldType: "UAString",
18453
+ fieldType: "String",
18454
18454
  },
18455
18455
  {
18456
18456
  name: "identifier",
@@ -18496,13 +18496,13 @@ export class PortableNodeId extends ExtensionObject {
18496
18496
  }
18497
18497
  public encode(stream: OutputBinaryStream): void {
18498
18498
  /* NEEDED */ super.encode(stream);
18499
- encodeUAString(this.namespaceUri, stream);
18499
+ encodeString(this.namespaceUri, stream);
18500
18500
  encodeNodeId(this.identifier, stream);
18501
18501
  }
18502
18502
  public decode(stream: BinaryStream): void {
18503
18503
  // call base class implementation first
18504
18504
  /* NEEDED !!! */ super.decode(stream);
18505
- this.namespaceUri = decodeUAString(stream, this.namespaceUri);
18505
+ this.namespaceUri = decodeString(stream, this.namespaceUri);
18506
18506
  this.identifier = decodeNodeId(stream, this.identifier);
18507
18507
  }
18508
18508
  public get schema(): StructuredTypeSchema { return schemaPortableNodeId; }
@@ -18521,12 +18521,12 @@ const schemaPortableQualifiedName = buildStructuredType({
18521
18521
  {
18522
18522
  name: "namespaceUri",
18523
18523
 
18524
- fieldType: "UAString",
18524
+ fieldType: "String",
18525
18525
  },
18526
18526
  {
18527
18527
  name: "name",
18528
18528
 
18529
- fieldType: "UAString",
18529
+ fieldType: "String",
18530
18530
  },
18531
18531
  ]
18532
18532
  });
@@ -18567,14 +18567,14 @@ export class PortableQualifiedName extends ExtensionObject {
18567
18567
  }
18568
18568
  public encode(stream: OutputBinaryStream): void {
18569
18569
  /* NEEDED */ super.encode(stream);
18570
- encodeUAString(this.namespaceUri, stream);
18571
- encodeUAString(this.name, stream);
18570
+ encodeString(this.namespaceUri, stream);
18571
+ encodeString(this.name, stream);
18572
18572
  }
18573
18573
  public decode(stream: BinaryStream): void {
18574
18574
  // call base class implementation first
18575
18575
  /* NEEDED !!! */ super.decode(stream);
18576
- this.namespaceUri = decodeUAString(stream, this.namespaceUri);
18577
- this.name = decodeUAString(stream, this.name);
18576
+ this.namespaceUri = decodeString(stream, this.namespaceUri);
18577
+ this.name = decodeString(stream, this.name);
18578
18578
  }
18579
18579
  public get schema(): StructuredTypeSchema { return schemaPortableQualifiedName; }
18580
18580
  }
@@ -18592,12 +18592,12 @@ const schemaPriorityMappingEntryType = buildStructuredType({
18592
18592
  {
18593
18593
  name: "mappingUri",
18594
18594
 
18595
- fieldType: "UAString",
18595
+ fieldType: "String",
18596
18596
  },
18597
18597
  {
18598
18598
  name: "priorityLabel",
18599
18599
 
18600
- fieldType: "UAString",
18600
+ fieldType: "String",
18601
18601
  },
18602
18602
  {
18603
18603
  name: "priorityValue_PCP",
@@ -18658,16 +18658,16 @@ export class PriorityMappingEntryType extends ExtensionObject {
18658
18658
  }
18659
18659
  public encode(stream: OutputBinaryStream): void {
18660
18660
  /* NEEDED */ super.encode(stream);
18661
- encodeUAString(this.mappingUri, stream);
18662
- encodeUAString(this.priorityLabel, stream);
18661
+ encodeString(this.mappingUri, stream);
18662
+ encodeString(this.priorityLabel, stream);
18663
18663
  encodeByte(this.priorityValue_PCP, stream);
18664
18664
  encodeUInt32(this.priorityValue_DSCP, stream);
18665
18665
  }
18666
18666
  public decode(stream: BinaryStream): void {
18667
18667
  // call base class implementation first
18668
18668
  /* NEEDED !!! */ super.decode(stream);
18669
- this.mappingUri = decodeUAString(stream, this.mappingUri);
18670
- this.priorityLabel = decodeUAString(stream, this.priorityLabel);
18669
+ this.mappingUri = decodeString(stream, this.mappingUri);
18670
+ this.priorityLabel = decodeString(stream, this.priorityLabel);
18671
18671
  this.priorityValue_PCP = decodeByte(stream, this.priorityValue_PCP);
18672
18672
  this.priorityValue_DSCP = decodeUInt32(stream, this.priorityValue_DSCP);
18673
18673
  }
@@ -18692,7 +18692,7 @@ const schemaProgramDiagnostic2DataType = buildStructuredType({
18692
18692
  {
18693
18693
  name: "createClientName",
18694
18694
 
18695
- fieldType: "UAString",
18695
+ fieldType: "String",
18696
18696
  },
18697
18697
  {
18698
18698
  name: "invocationCreationTime",
@@ -18707,7 +18707,7 @@ const schemaProgramDiagnostic2DataType = buildStructuredType({
18707
18707
  {
18708
18708
  name: "lastMethodCall",
18709
18709
 
18710
- fieldType: "UAString",
18710
+ fieldType: "String",
18711
18711
  },
18712
18712
  {
18713
18713
  name: "lastMethodSessionId",
@@ -18846,10 +18846,10 @@ export class ProgramDiagnostic2DataType extends ExtensionObject {
18846
18846
  public encode(stream: OutputBinaryStream): void {
18847
18847
  /* NEEDED */ super.encode(stream);
18848
18848
  encodeNodeId(this.createSessionId, stream);
18849
- encodeUAString(this.createClientName, stream);
18849
+ encodeString(this.createClientName, stream);
18850
18850
  encodeDateTime(this.invocationCreationTime, stream);
18851
18851
  encodeDateTime(this.lastTransitionTime, stream);
18852
- encodeUAString(this.lastMethodCall, stream);
18852
+ encodeString(this.lastMethodCall, stream);
18853
18853
  encodeNodeId(this.lastMethodSessionId, stream);
18854
18854
  encodeArray(this.lastMethodInputArguments, stream, (obj, stream1) => { obj.encode(stream1); });
18855
18855
  encodeArray(this.lastMethodOutputArguments, stream, (obj, stream1) => { obj.encode(stream1); });
@@ -18862,10 +18862,10 @@ export class ProgramDiagnostic2DataType extends ExtensionObject {
18862
18862
  // call base class implementation first
18863
18863
  /* NEEDED !!! */ super.decode(stream);
18864
18864
  this.createSessionId = decodeNodeId(stream, this.createSessionId);
18865
- this.createClientName = decodeUAString(stream, this.createClientName);
18865
+ this.createClientName = decodeString(stream, this.createClientName);
18866
18866
  this.invocationCreationTime = decodeDateTime(stream, this.invocationCreationTime);
18867
18867
  this.lastTransitionTime = decodeDateTime(stream, this.lastTransitionTime);
18868
- this.lastMethodCall = decodeUAString(stream, this.lastMethodCall);
18868
+ this.lastMethodCall = decodeString(stream, this.lastMethodCall);
18869
18869
  this.lastMethodSessionId = decodeNodeId(stream, this.lastMethodSessionId);
18870
18870
  this.lastMethodInputArguments = decodeArray(stream, (stream1: BinaryStream) => {
18871
18871
  const obj = new Argument(null);
@@ -18974,7 +18974,7 @@ const schemaProgramDiagnosticDataType = buildStructuredType({
18974
18974
  {
18975
18975
  name: "createClientName",
18976
18976
 
18977
- fieldType: "UAString",
18977
+ fieldType: "String",
18978
18978
  },
18979
18979
  {
18980
18980
  name: "invocationCreationTime",
@@ -18989,7 +18989,7 @@ const schemaProgramDiagnosticDataType = buildStructuredType({
18989
18989
  {
18990
18990
  name: "lastMethodCall",
18991
18991
 
18992
- fieldType: "UAString",
18992
+ fieldType: "String",
18993
18993
  },
18994
18994
  {
18995
18995
  name: "lastMethodSessionId",
@@ -19106,10 +19106,10 @@ export class ProgramDiagnosticDataType extends ExtensionObject {
19106
19106
  public encode(stream: OutputBinaryStream): void {
19107
19107
  /* NEEDED */ super.encode(stream);
19108
19108
  encodeNodeId(this.createSessionId, stream);
19109
- encodeUAString(this.createClientName, stream);
19109
+ encodeString(this.createClientName, stream);
19110
19110
  encodeDateTime(this.invocationCreationTime, stream);
19111
19111
  encodeDateTime(this.lastTransitionTime, stream);
19112
- encodeUAString(this.lastMethodCall, stream);
19112
+ encodeString(this.lastMethodCall, stream);
19113
19113
  encodeNodeId(this.lastMethodSessionId, stream);
19114
19114
  encodeArray(this.lastMethodInputArguments, stream, (obj, stream1) => { obj.encode(stream1); });
19115
19115
  encodeArray(this.lastMethodOutputArguments, stream, (obj, stream1) => { obj.encode(stream1); });
@@ -19120,10 +19120,10 @@ export class ProgramDiagnosticDataType extends ExtensionObject {
19120
19120
  // call base class implementation first
19121
19121
  /* NEEDED !!! */ super.decode(stream);
19122
19122
  this.createSessionId = decodeNodeId(stream, this.createSessionId);
19123
- this.createClientName = decodeUAString(stream, this.createClientName);
19123
+ this.createClientName = decodeString(stream, this.createClientName);
19124
19124
  this.invocationCreationTime = decodeDateTime(stream, this.invocationCreationTime);
19125
19125
  this.lastTransitionTime = decodeDateTime(stream, this.lastTransitionTime);
19126
- this.lastMethodCall = decodeUAString(stream, this.lastMethodCall);
19126
+ this.lastMethodCall = decodeString(stream, this.lastMethodCall);
19127
19127
  this.lastMethodSessionId = decodeNodeId(stream, this.lastMethodSessionId);
19128
19128
  this.lastMethodInputArguments = decodeArray(stream, (stream1: BinaryStream) => {
19129
19129
  const obj = new Argument(null);
@@ -19154,12 +19154,12 @@ const schemaPublishedDataSetDataType = buildStructuredType({
19154
19154
  {
19155
19155
  name: "name",
19156
19156
 
19157
- fieldType: "UAString",
19157
+ fieldType: "String",
19158
19158
  },
19159
19159
  {
19160
19160
  name: "dataSetFolder",
19161
19161
 
19162
- fieldType: "UAString",
19162
+ fieldType: "String",
19163
19163
  isArray: true
19164
19164
  },
19165
19165
  {
@@ -19236,8 +19236,8 @@ export class PublishedDataSetDataType extends ExtensionObject {
19236
19236
  }
19237
19237
  public encode(stream: OutputBinaryStream): void {
19238
19238
  /* NEEDED */ super.encode(stream);
19239
- encodeUAString(this.name, stream);
19240
- encodeArray(this.dataSetFolder, stream, encodeUAString);
19239
+ encodeString(this.name, stream);
19240
+ encodeArray(this.dataSetFolder, stream, encodeString);
19241
19241
  this.dataSetMetaData.encode(stream);
19242
19242
  encodeArray(this.extensionFields, stream, (obj, stream1) => { obj.encode(stream1); });
19243
19243
  encodeExtensionObject(this.dataSetSource, stream);
@@ -19245,8 +19245,8 @@ export class PublishedDataSetDataType extends ExtensionObject {
19245
19245
  public decode(stream: BinaryStream): void {
19246
19246
  // call base class implementation first
19247
19247
  /* NEEDED !!! */ super.decode(stream);
19248
- this.name = decodeUAString(stream, this.name);
19249
- this.dataSetFolder = decodeArray(stream, decodeUAString);
19248
+ this.name = decodeString(stream, this.name);
19249
+ this.dataSetFolder = decodeArray(stream, decodeString);
19250
19250
  this.dataSetMetaData.decode(stream);
19251
19251
  this.extensionFields = decodeArray(stream, (stream1: BinaryStream) => {
19252
19252
  const obj = new KeyValuePair(null);
@@ -19271,12 +19271,12 @@ const schemaPubSubGroupDataType = buildStructuredType({
19271
19271
  {
19272
19272
  name: "name",
19273
19273
 
19274
- fieldType: "UAString",
19274
+ fieldType: "String",
19275
19275
  },
19276
19276
  {
19277
19277
  name: "enabled",
19278
19278
 
19279
- fieldType: "UABoolean",
19279
+ fieldType: "Boolean",
19280
19280
  },
19281
19281
  {
19282
19282
  name: "securityMode",
@@ -19286,7 +19286,7 @@ const schemaPubSubGroupDataType = buildStructuredType({
19286
19286
  {
19287
19287
  name: "securityGroupId",
19288
19288
 
19289
- fieldType: "UAString",
19289
+ fieldType: "String",
19290
19290
  },
19291
19291
  {
19292
19292
  name: "securityKeyServices",
@@ -19377,10 +19377,10 @@ export class PubSubGroupDataType extends ExtensionObject {
19377
19377
  }
19378
19378
  public encode(stream: OutputBinaryStream): void {
19379
19379
  /* NEEDED */ super.encode(stream);
19380
- encodeUAString(this.name, stream);
19381
- encodeUABoolean(this.enabled, stream);
19380
+ encodeString(this.name, stream);
19381
+ encodeBoolean(this.enabled, stream);
19382
19382
  encodeMessageSecurityMode(this.securityMode, stream);
19383
- encodeUAString(this.securityGroupId, stream);
19383
+ encodeString(this.securityGroupId, stream);
19384
19384
  encodeArray(this.securityKeyServices, stream, (obj, stream1) => { obj.encode(stream1); });
19385
19385
  encodeUInt32(this.maxNetworkMessageSize, stream);
19386
19386
  encodeArray(this.groupProperties, stream, (obj, stream1) => { obj.encode(stream1); });
@@ -19388,10 +19388,10 @@ export class PubSubGroupDataType extends ExtensionObject {
19388
19388
  public decode(stream: BinaryStream): void {
19389
19389
  // call base class implementation first
19390
19390
  /* NEEDED !!! */ super.decode(stream);
19391
- this.name = decodeUAString(stream, this.name);
19392
- this.enabled = decodeUABoolean(stream, this.enabled);
19391
+ this.name = decodeString(stream, this.name);
19392
+ this.enabled = decodeBoolean(stream, this.enabled);
19393
19393
  this.securityMode = decodeMessageSecurityMode(stream, this.securityMode);
19394
- this.securityGroupId = decodeUAString(stream, this.securityGroupId);
19394
+ this.securityGroupId = decodeString(stream, this.securityGroupId);
19395
19395
  this.securityKeyServices = decodeArray(stream, (stream1: BinaryStream) => {
19396
19396
  const obj = new EndpointDescription(null);
19397
19397
  obj.decode(stream1);
@@ -19451,13 +19451,13 @@ const schemaWriterGroupDataType = buildStructuredType({
19451
19451
  {
19452
19452
  name: "localeIds",
19453
19453
 
19454
- fieldType: "UAString",
19454
+ fieldType: "String",
19455
19455
  isArray: true
19456
19456
  },
19457
19457
  {
19458
19458
  name: "headerLayoutUri",
19459
19459
 
19460
- fieldType: "UAString",
19460
+ fieldType: "String",
19461
19461
  },
19462
19462
  {
19463
19463
  name: "transportSettings",
@@ -19557,8 +19557,8 @@ export class WriterGroupDataType extends PubSubGroupDataType {
19557
19557
  encodeDouble(this.publishingInterval, stream);
19558
19558
  encodeDouble(this.keepAliveTime, stream);
19559
19559
  encodeByte(this.priority, stream);
19560
- encodeArray(this.localeIds, stream, encodeUAString);
19561
- encodeUAString(this.headerLayoutUri, stream);
19560
+ encodeArray(this.localeIds, stream, encodeString);
19561
+ encodeString(this.headerLayoutUri, stream);
19562
19562
  encodeExtensionObject(this.transportSettings, stream);
19563
19563
  encodeExtensionObject(this.messageSettings, stream);
19564
19564
  encodeArray(this.dataSetWriters, stream, (obj, stream1) => { obj.encode(stream1); });
@@ -19570,8 +19570,8 @@ export class WriterGroupDataType extends PubSubGroupDataType {
19570
19570
  this.publishingInterval = decodeDouble(stream, this.publishingInterval);
19571
19571
  this.keepAliveTime = decodeDouble(stream, this.keepAliveTime);
19572
19572
  this.priority = decodeByte(stream, this.priority);
19573
- this.localeIds = decodeArray(stream, decodeUAString);
19574
- this.headerLayoutUri = decodeUAString(stream, this.headerLayoutUri);
19573
+ this.localeIds = decodeArray(stream, decodeString);
19574
+ this.headerLayoutUri = decodeString(stream, this.headerLayoutUri);
19575
19575
  this.transportSettings = decodeExtensionObject(stream, this.transportSettings);
19576
19576
  this.messageSettings = decodeExtensionObject(stream, this.messageSettings);
19577
19577
  this.dataSetWriters = decodeArray(stream, (stream1: BinaryStream) => {
@@ -19688,12 +19688,12 @@ const schemaPubSubConnectionDataType = buildStructuredType({
19688
19688
  {
19689
19689
  name: "name",
19690
19690
 
19691
- fieldType: "UAString",
19691
+ fieldType: "String",
19692
19692
  },
19693
19693
  {
19694
19694
  name: "enabled",
19695
19695
 
19696
- fieldType: "UABoolean",
19696
+ fieldType: "Boolean",
19697
19697
  },
19698
19698
  {
19699
19699
  name: "publisherId",
@@ -19703,7 +19703,7 @@ const schemaPubSubConnectionDataType = buildStructuredType({
19703
19703
  {
19704
19704
  name: "transportProfileUri",
19705
19705
 
19706
- fieldType: "UAString",
19706
+ fieldType: "String",
19707
19707
  },
19708
19708
  {
19709
19709
  name: "address",
@@ -19819,10 +19819,10 @@ export class PubSubConnectionDataType extends ExtensionObject {
19819
19819
  }
19820
19820
  public encode(stream: OutputBinaryStream): void {
19821
19821
  /* NEEDED */ super.encode(stream);
19822
- encodeUAString(this.name, stream);
19823
- encodeUABoolean(this.enabled, stream);
19822
+ encodeString(this.name, stream);
19823
+ encodeBoolean(this.enabled, stream);
19824
19824
  encodeVariant(this.publisherId, stream);
19825
- encodeUAString(this.transportProfileUri, stream);
19825
+ encodeString(this.transportProfileUri, stream);
19826
19826
  encodeExtensionObject(this.address, stream);
19827
19827
  encodeArray(this.connectionProperties, stream, (obj, stream1) => { obj.encode(stream1); });
19828
19828
  encodeExtensionObject(this.transportSettings, stream);
@@ -19832,10 +19832,10 @@ export class PubSubConnectionDataType extends ExtensionObject {
19832
19832
  public decode(stream: BinaryStream): void {
19833
19833
  // call base class implementation first
19834
19834
  /* NEEDED !!! */ super.decode(stream);
19835
- this.name = decodeUAString(stream, this.name);
19836
- this.enabled = decodeUABoolean(stream, this.enabled);
19835
+ this.name = decodeString(stream, this.name);
19836
+ this.enabled = decodeBoolean(stream, this.enabled);
19837
19837
  this.publisherId = decodeVariant(stream, this.publisherId);
19838
- this.transportProfileUri = decodeUAString(stream, this.transportProfileUri);
19838
+ this.transportProfileUri = decodeString(stream, this.transportProfileUri);
19839
19839
  this.address = decodeExtensionObject(stream, this.address);
19840
19840
  this.connectionProperties = decodeArray(stream, (stream1: BinaryStream) => {
19841
19841
  const obj = new KeyValuePair(null);
@@ -19882,7 +19882,7 @@ const schemaPubSubConfigurationDataType = buildStructuredType({
19882
19882
  {
19883
19883
  name: "enabled",
19884
19884
 
19885
- fieldType: "UABoolean",
19885
+ fieldType: "Boolean",
19886
19886
  },
19887
19887
  ]
19888
19888
  });
@@ -19938,7 +19938,7 @@ export class PubSubConfigurationDataType extends ExtensionObject {
19938
19938
  /* NEEDED */ super.encode(stream);
19939
19939
  encodeArray(this.publishedDataSets, stream, (obj, stream1) => { obj.encode(stream1); });
19940
19940
  encodeArray(this.connections, stream, (obj, stream1) => { obj.encode(stream1); });
19941
- encodeUABoolean(this.enabled, stream);
19941
+ encodeBoolean(this.enabled, stream);
19942
19942
  }
19943
19943
  public decode(stream: BinaryStream): void {
19944
19944
  // call base class implementation first
@@ -19953,7 +19953,7 @@ export class PubSubConfigurationDataType extends ExtensionObject {
19953
19953
  obj.decode(stream1);
19954
19954
  return obj;
19955
19955
  });
19956
- this.enabled = decodeUABoolean(stream, this.enabled);
19956
+ this.enabled = decodeBoolean(stream, this.enabled);
19957
19957
  }
19958
19958
  public get schema(): StructuredTypeSchema { return schemaPubSubConfigurationDataType; }
19959
19959
  }
@@ -20019,12 +20019,12 @@ const schemaStandaloneSubscribedDataSetDataType = buildStructuredType({
20019
20019
  {
20020
20020
  name: "name",
20021
20021
 
20022
- fieldType: "UAString",
20022
+ fieldType: "String",
20023
20023
  },
20024
20024
  {
20025
20025
  name: "dataSetFolder",
20026
20026
 
20027
- fieldType: "UAString",
20027
+ fieldType: "String",
20028
20028
  isArray: true
20029
20029
  },
20030
20030
  {
@@ -20086,16 +20086,16 @@ export class StandaloneSubscribedDataSetDataType extends SubscribedDataSetDataTy
20086
20086
  }
20087
20087
  public encode(stream: OutputBinaryStream): void {
20088
20088
  /* NEEDED */ super.encode(stream);
20089
- encodeUAString(this.name, stream);
20090
- encodeArray(this.dataSetFolder, stream, encodeUAString);
20089
+ encodeString(this.name, stream);
20090
+ encodeArray(this.dataSetFolder, stream, encodeString);
20091
20091
  this.dataSetMetaData.encode(stream);
20092
20092
  encodeExtensionObject(this.subscribedDataSet, stream);
20093
20093
  }
20094
20094
  public decode(stream: BinaryStream): void {
20095
20095
  // call base class implementation first
20096
20096
  /* NEEDED !!! */ super.decode(stream);
20097
- this.name = decodeUAString(stream, this.name);
20098
- this.dataSetFolder = decodeArray(stream, decodeUAString);
20097
+ this.name = decodeString(stream, this.name);
20098
+ this.dataSetFolder = decodeArray(stream, decodeString);
20099
20099
  this.dataSetMetaData.decode(stream);
20100
20100
  this.subscribedDataSet = decodeExtensionObject(stream, this.subscribedDataSet);
20101
20101
  }
@@ -20115,12 +20115,12 @@ const schemaSecurityGroupDataType = buildStructuredType({
20115
20115
  {
20116
20116
  name: "name",
20117
20117
 
20118
- fieldType: "UAString",
20118
+ fieldType: "String",
20119
20119
  },
20120
20120
  {
20121
20121
  name: "securityGroupFolder",
20122
20122
 
20123
- fieldType: "UAString",
20123
+ fieldType: "String",
20124
20124
  isArray: true
20125
20125
  },
20126
20126
  {
@@ -20131,7 +20131,7 @@ const schemaSecurityGroupDataType = buildStructuredType({
20131
20131
  {
20132
20132
  name: "securityPolicyUri",
20133
20133
 
20134
- fieldType: "UAString",
20134
+ fieldType: "String",
20135
20135
  },
20136
20136
  {
20137
20137
  name: "maxFutureKeyCount",
@@ -20146,7 +20146,7 @@ const schemaSecurityGroupDataType = buildStructuredType({
20146
20146
  {
20147
20147
  name: "securityGroupId",
20148
20148
 
20149
- fieldType: "UAString",
20149
+ fieldType: "String",
20150
20150
  },
20151
20151
  {
20152
20152
  name: "rolePermissions",
@@ -20242,26 +20242,26 @@ export class SecurityGroupDataType extends ExtensionObject {
20242
20242
  }
20243
20243
  public encode(stream: OutputBinaryStream): void {
20244
20244
  /* NEEDED */ super.encode(stream);
20245
- encodeUAString(this.name, stream);
20246
- encodeArray(this.securityGroupFolder, stream, encodeUAString);
20245
+ encodeString(this.name, stream);
20246
+ encodeArray(this.securityGroupFolder, stream, encodeString);
20247
20247
  encodeDouble(this.keyLifetime, stream);
20248
- encodeUAString(this.securityPolicyUri, stream);
20248
+ encodeString(this.securityPolicyUri, stream);
20249
20249
  encodeUInt32(this.maxFutureKeyCount, stream);
20250
20250
  encodeUInt32(this.maxPastKeyCount, stream);
20251
- encodeUAString(this.securityGroupId, stream);
20251
+ encodeString(this.securityGroupId, stream);
20252
20252
  encodeArray(this.rolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
20253
20253
  encodeArray(this.groupProperties, stream, (obj, stream1) => { obj.encode(stream1); });
20254
20254
  }
20255
20255
  public decode(stream: BinaryStream): void {
20256
20256
  // call base class implementation first
20257
20257
  /* NEEDED !!! */ super.decode(stream);
20258
- this.name = decodeUAString(stream, this.name);
20259
- this.securityGroupFolder = decodeArray(stream, decodeUAString);
20258
+ this.name = decodeString(stream, this.name);
20259
+ this.securityGroupFolder = decodeArray(stream, decodeString);
20260
20260
  this.keyLifetime = decodeDouble(stream, this.keyLifetime);
20261
- this.securityPolicyUri = decodeUAString(stream, this.securityPolicyUri);
20261
+ this.securityPolicyUri = decodeString(stream, this.securityPolicyUri);
20262
20262
  this.maxFutureKeyCount = decodeUInt32(stream, this.maxFutureKeyCount);
20263
20263
  this.maxPastKeyCount = decodeUInt32(stream, this.maxPastKeyCount);
20264
- this.securityGroupId = decodeUAString(stream, this.securityGroupId);
20264
+ this.securityGroupId = decodeString(stream, this.securityGroupId);
20265
20265
  this.rolePermissions = decodeArray(stream, (stream1: BinaryStream) => {
20266
20266
  const obj = new RolePermissionType(null);
20267
20267
  obj.decode(stream1);
@@ -20289,23 +20289,23 @@ const schemaPubSubKeyPushTargetDataType = buildStructuredType({
20289
20289
  {
20290
20290
  name: "applicationUri",
20291
20291
 
20292
- fieldType: "UAString",
20292
+ fieldType: "String",
20293
20293
  },
20294
20294
  {
20295
20295
  name: "pushTargetFolder",
20296
20296
 
20297
- fieldType: "UAString",
20297
+ fieldType: "String",
20298
20298
  isArray: true
20299
20299
  },
20300
20300
  {
20301
20301
  name: "endpointUrl",
20302
20302
 
20303
- fieldType: "UAString",
20303
+ fieldType: "String",
20304
20304
  },
20305
20305
  {
20306
20306
  name: "securityPolicyUri",
20307
20307
 
20308
- fieldType: "UAString",
20308
+ fieldType: "String",
20309
20309
  },
20310
20310
  {
20311
20311
  name: "userTokenType",
@@ -20331,7 +20331,7 @@ const schemaPubSubKeyPushTargetDataType = buildStructuredType({
20331
20331
  {
20332
20332
  name: "securityGroups",
20333
20333
 
20334
- fieldType: "UAString",
20334
+ fieldType: "String",
20335
20335
  isArray: true
20336
20336
  },
20337
20337
  ]
@@ -20412,23 +20412,23 @@ export class PubSubKeyPushTargetDataType extends ExtensionObject {
20412
20412
  }
20413
20413
  public encode(stream: OutputBinaryStream): void {
20414
20414
  /* NEEDED */ super.encode(stream);
20415
- encodeUAString(this.applicationUri, stream);
20416
- encodeArray(this.pushTargetFolder, stream, encodeUAString);
20417
- encodeUAString(this.endpointUrl, stream);
20418
- encodeUAString(this.securityPolicyUri, stream);
20415
+ encodeString(this.applicationUri, stream);
20416
+ encodeArray(this.pushTargetFolder, stream, encodeString);
20417
+ encodeString(this.endpointUrl, stream);
20418
+ encodeString(this.securityPolicyUri, stream);
20419
20419
  this.userTokenType.encode(stream);
20420
20420
  encodeUInt16(this.requestedKeyCount, stream);
20421
20421
  encodeDouble(this.retryInterval, stream);
20422
20422
  encodeArray(this.pushTargetProperties, stream, (obj, stream1) => { obj.encode(stream1); });
20423
- encodeArray(this.securityGroups, stream, encodeUAString);
20423
+ encodeArray(this.securityGroups, stream, encodeString);
20424
20424
  }
20425
20425
  public decode(stream: BinaryStream): void {
20426
20426
  // call base class implementation first
20427
20427
  /* NEEDED !!! */ super.decode(stream);
20428
- this.applicationUri = decodeUAString(stream, this.applicationUri);
20429
- this.pushTargetFolder = decodeArray(stream, decodeUAString);
20430
- this.endpointUrl = decodeUAString(stream, this.endpointUrl);
20431
- this.securityPolicyUri = decodeUAString(stream, this.securityPolicyUri);
20428
+ this.applicationUri = decodeString(stream, this.applicationUri);
20429
+ this.pushTargetFolder = decodeArray(stream, decodeString);
20430
+ this.endpointUrl = decodeString(stream, this.endpointUrl);
20431
+ this.securityPolicyUri = decodeString(stream, this.securityPolicyUri);
20432
20432
  this.userTokenType.decode(stream);
20433
20433
  this.requestedKeyCount = decodeUInt16(stream, this.requestedKeyCount);
20434
20434
  this.retryInterval = decodeDouble(stream, this.retryInterval);
@@ -20437,7 +20437,7 @@ export class PubSubKeyPushTargetDataType extends ExtensionObject {
20437
20437
  obj.decode(stream1);
20438
20438
  return obj;
20439
20439
  });
20440
- this.securityGroups = decodeArray(stream, decodeUAString);
20440
+ this.securityGroups = decodeArray(stream, decodeString);
20441
20441
  }
20442
20442
  public get schema(): StructuredTypeSchema { return schemaPubSubKeyPushTargetDataType; }
20443
20443
  }
@@ -20782,7 +20782,7 @@ const schemaPubSubConfigurationValueDataType = buildStructuredType({
20782
20782
  {
20783
20783
  name: "name",
20784
20784
 
20785
- fieldType: "UAString",
20785
+ fieldType: "String",
20786
20786
  },
20787
20787
  {
20788
20788
  name: "identifier",
@@ -20834,14 +20834,14 @@ export class PubSubConfigurationValueDataType extends ExtensionObject {
20834
20834
  public encode(stream: OutputBinaryStream): void {
20835
20835
  /* NEEDED */ super.encode(stream);
20836
20836
  this.configurationElement.encode(stream);
20837
- encodeUAString(this.name, stream);
20837
+ encodeString(this.name, stream);
20838
20838
  encodeVariant(this.identifier, stream);
20839
20839
  }
20840
20840
  public decode(stream: BinaryStream): void {
20841
20841
  // call base class implementation first
20842
20842
  /* NEEDED !!! */ super.decode(stream);
20843
20843
  this.configurationElement.decode(stream);
20844
- this.name = decodeUAString(stream, this.name);
20844
+ this.name = decodeString(stream, this.name);
20845
20845
  this.identifier = decodeVariant(stream, this.identifier);
20846
20846
  }
20847
20847
  public get schema(): StructuredTypeSchema { return schemaPubSubConfigurationValueDataType; }
@@ -21027,7 +21027,7 @@ const schemaPublishResponse = buildStructuredType({
21027
21027
  {
21028
21028
  name: "moreNotifications",
21029
21029
 
21030
- fieldType: "UABoolean",
21030
+ fieldType: "Boolean",
21031
21031
  },
21032
21032
  {
21033
21033
  name: "notificationMessage",
@@ -21113,7 +21113,7 @@ export class PublishResponse extends ExtensionObject {
21113
21113
  this.responseHeader.encode(stream);
21114
21114
  encodeUInt32(this.subscriptionId, stream);
21115
21115
  encodeArray(this.availableSequenceNumbers, stream, encodeUInt32);
21116
- encodeUABoolean(this.moreNotifications, stream);
21116
+ encodeBoolean(this.moreNotifications, stream);
21117
21117
  this.notificationMessage.encode(stream);
21118
21118
  encodeArray(this.results, stream, encodeStatusCode);
21119
21119
  encodeArray(this.diagnosticInfos, stream, encodeDiagnosticInfo);
@@ -21124,7 +21124,7 @@ export class PublishResponse extends ExtensionObject {
21124
21124
  this.responseHeader.decode(stream);
21125
21125
  this.subscriptionId = decodeUInt32(stream, this.subscriptionId);
21126
21126
  this.availableSequenceNumbers = decodeArray(stream, decodeUInt32);
21127
- this.moreNotifications = decodeUABoolean(stream, this.moreNotifications);
21127
+ this.moreNotifications = decodeBoolean(stream, this.moreNotifications);
21128
21128
  this.notificationMessage.decode(stream);
21129
21129
  this.results = decodeArray(stream, decodeStatusCode);
21130
21130
  this.diagnosticInfos = decodeArray(stream, decodeDiagnosticInfo);
@@ -21405,7 +21405,7 @@ const schemaPublishedDataSetCustomSourceDataType = buildStructuredType({
21405
21405
  {
21406
21406
  name: "cyclicDataSet",
21407
21407
 
21408
- fieldType: "UABoolean",
21408
+ fieldType: "Boolean",
21409
21409
  },
21410
21410
  ]
21411
21411
  });
@@ -21441,12 +21441,12 @@ export class PublishedDataSetCustomSourceDataType extends PublishedDataSetSource
21441
21441
  }
21442
21442
  public encode(stream: OutputBinaryStream): void {
21443
21443
  /* NEEDED */ super.encode(stream);
21444
- encodeUABoolean(this.cyclicDataSet, stream);
21444
+ encodeBoolean(this.cyclicDataSet, stream);
21445
21445
  }
21446
21446
  public decode(stream: BinaryStream): void {
21447
21447
  // call base class implementation first
21448
21448
  /* NEEDED !!! */ super.decode(stream);
21449
- this.cyclicDataSet = decodeUABoolean(stream, this.cyclicDataSet);
21449
+ this.cyclicDataSet = decodeBoolean(stream, this.cyclicDataSet);
21450
21450
  }
21451
21451
  public get schema(): StructuredTypeSchema { return schemaPublishedDataSetCustomSourceDataType; }
21452
21452
  }
@@ -21959,7 +21959,7 @@ const schemaQueryNextRequest = buildStructuredType({
21959
21959
  {
21960
21960
  name: "releaseContinuationPoint",
21961
21961
 
21962
- fieldType: "UABoolean",
21962
+ fieldType: "Boolean",
21963
21963
  },
21964
21964
  {
21965
21965
  name: "continuationPoint",
@@ -22011,14 +22011,14 @@ export class QueryNextRequest extends ExtensionObject {
22011
22011
  public encode(stream: OutputBinaryStream): void {
22012
22012
  /* NEEDED */ super.encode(stream);
22013
22013
  this.requestHeader.encode(stream);
22014
- encodeUABoolean(this.releaseContinuationPoint, stream);
22014
+ encodeBoolean(this.releaseContinuationPoint, stream);
22015
22015
  encodeByteString(this.continuationPoint, stream);
22016
22016
  }
22017
22017
  public decode(stream: BinaryStream): void {
22018
22018
  // call base class implementation first
22019
22019
  /* NEEDED !!! */ super.decode(stream);
22020
22020
  this.requestHeader.decode(stream);
22021
- this.releaseContinuationPoint = decodeUABoolean(stream, this.releaseContinuationPoint);
22021
+ this.releaseContinuationPoint = decodeBoolean(stream, this.releaseContinuationPoint);
22022
22022
  this.continuationPoint = decodeByteString(stream, this.continuationPoint);
22023
22023
  }
22024
22024
  public get schema(): StructuredTypeSchema { return schemaQueryNextRequest; }
@@ -22266,7 +22266,7 @@ const schemaReadAtTimeDetails = buildStructuredType({
22266
22266
  {
22267
22267
  name: "useSimpleBounds",
22268
22268
 
22269
- fieldType: "UABoolean",
22269
+ fieldType: "Boolean",
22270
22270
  },
22271
22271
  ]
22272
22272
  });
@@ -22308,13 +22308,13 @@ export class ReadAtTimeDetails extends HistoryReadDetails {
22308
22308
  public encode(stream: OutputBinaryStream): void {
22309
22309
  /* NEEDED */ super.encode(stream);
22310
22310
  encodeArray(this.reqTimes, stream, encodeDateTime);
22311
- encodeUABoolean(this.useSimpleBounds, stream);
22311
+ encodeBoolean(this.useSimpleBounds, stream);
22312
22312
  }
22313
22313
  public decode(stream: BinaryStream): void {
22314
22314
  // call base class implementation first
22315
22315
  /* NEEDED !!! */ super.decode(stream);
22316
22316
  this.reqTimes = decodeArray(stream, decodeDateTime);
22317
- this.useSimpleBounds = decodeUABoolean(stream, this.useSimpleBounds);
22317
+ this.useSimpleBounds = decodeBoolean(stream, this.useSimpleBounds);
22318
22318
  }
22319
22319
  public get schema(): StructuredTypeSchema { return schemaReadAtTimeDetails; }
22320
22320
  }
@@ -22535,7 +22535,7 @@ const schemaReadRawModifiedDetails = buildStructuredType({
22535
22535
  {
22536
22536
  name: "isReadModified",
22537
22537
 
22538
- fieldType: "UABoolean",
22538
+ fieldType: "Boolean",
22539
22539
  },
22540
22540
  {
22541
22541
  name: "startTime",
@@ -22555,7 +22555,7 @@ const schemaReadRawModifiedDetails = buildStructuredType({
22555
22555
  {
22556
22556
  name: "returnBounds",
22557
22557
 
22558
- fieldType: "UABoolean",
22558
+ fieldType: "Boolean",
22559
22559
  },
22560
22560
  ]
22561
22561
  });
@@ -22611,20 +22611,20 @@ export class ReadRawModifiedDetails extends HistoryReadDetails {
22611
22611
  }
22612
22612
  public encode(stream: OutputBinaryStream): void {
22613
22613
  /* NEEDED */ super.encode(stream);
22614
- encodeUABoolean(this.isReadModified, stream);
22614
+ encodeBoolean(this.isReadModified, stream);
22615
22615
  encodeDateTime(this.startTime, stream);
22616
22616
  encodeDateTime(this.endTime, stream);
22617
22617
  encodeUInt32(this.numValuesPerNode, stream);
22618
- encodeUABoolean(this.returnBounds, stream);
22618
+ encodeBoolean(this.returnBounds, stream);
22619
22619
  }
22620
22620
  public decode(stream: BinaryStream): void {
22621
22621
  // call base class implementation first
22622
22622
  /* NEEDED !!! */ super.decode(stream);
22623
- this.isReadModified = decodeUABoolean(stream, this.isReadModified);
22623
+ this.isReadModified = decodeBoolean(stream, this.isReadModified);
22624
22624
  this.startTime = decodeDateTime(stream, this.startTime);
22625
22625
  this.endTime = decodeDateTime(stream, this.endTime);
22626
22626
  this.numValuesPerNode = decodeUInt32(stream, this.numValuesPerNode);
22627
- this.returnBounds = decodeUABoolean(stream, this.returnBounds);
22627
+ this.returnBounds = decodeBoolean(stream, this.returnBounds);
22628
22628
  }
22629
22629
  public get schema(): StructuredTypeSchema { return schemaReadRawModifiedDetails; }
22630
22630
  }
@@ -22986,7 +22986,7 @@ const schemaReceiveQosPriorityDataType = buildStructuredType({
22986
22986
  {
22987
22987
  name: "priorityLabel",
22988
22988
 
22989
- fieldType: "UAString",
22989
+ fieldType: "String",
22990
22990
  },
22991
22991
  ]
22992
22992
  });
@@ -23022,12 +23022,12 @@ export class ReceiveQosPriorityDataType extends ReceiveQosDataType {
23022
23022
  }
23023
23023
  public encode(stream: OutputBinaryStream): void {
23024
23024
  /* NEEDED */ super.encode(stream);
23025
- encodeUAString(this.priorityLabel, stream);
23025
+ encodeString(this.priorityLabel, stream);
23026
23026
  }
23027
23027
  public decode(stream: BinaryStream): void {
23028
23028
  // call base class implementation first
23029
23029
  /* NEEDED !!! */ super.decode(stream);
23030
- this.priorityLabel = decodeUAString(stream, this.priorityLabel);
23030
+ this.priorityLabel = decodeString(stream, this.priorityLabel);
23031
23031
  }
23032
23032
  public get schema(): StructuredTypeSchema { return schemaReceiveQosPriorityDataType; }
23033
23033
  }
@@ -23075,7 +23075,7 @@ const schemaRedundantServerDataType = buildStructuredType({
23075
23075
  {
23076
23076
  name: "serverId",
23077
23077
 
23078
- fieldType: "UAString",
23078
+ fieldType: "String",
23079
23079
  },
23080
23080
  {
23081
23081
  name: "serviceLevel",
@@ -23131,14 +23131,14 @@ export class RedundantServerDataType extends ExtensionObject {
23131
23131
  }
23132
23132
  public encode(stream: OutputBinaryStream): void {
23133
23133
  /* NEEDED */ super.encode(stream);
23134
- encodeUAString(this.serverId, stream);
23134
+ encodeString(this.serverId, stream);
23135
23135
  encodeByte(this.serviceLevel, stream);
23136
23136
  encodeServerState(this.serverState, stream);
23137
23137
  }
23138
23138
  public decode(stream: BinaryStream): void {
23139
23139
  // call base class implementation first
23140
23140
  /* NEEDED !!! */ super.decode(stream);
23141
- this.serverId = decodeUAString(stream, this.serverId);
23141
+ this.serverId = decodeString(stream, this.serverId);
23142
23142
  this.serviceLevel = decodeByte(stream, this.serviceLevel);
23143
23143
  this.serverState = decodeServerState(stream, this.serverState);
23144
23144
  }
@@ -23169,12 +23169,12 @@ const schemaReferenceTypeAttributes = buildStructuredType({
23169
23169
  {
23170
23170
  name: "isAbstract",
23171
23171
 
23172
- fieldType: "UABoolean",
23172
+ fieldType: "Boolean",
23173
23173
  },
23174
23174
  {
23175
23175
  name: "symmetric",
23176
23176
 
23177
- fieldType: "UABoolean",
23177
+ fieldType: "Boolean",
23178
23178
  },
23179
23179
  {
23180
23180
  name: "inverseName",
@@ -23225,15 +23225,15 @@ export class ReferenceTypeAttributes extends NodeAttributes {
23225
23225
  }
23226
23226
  public encode(stream: OutputBinaryStream): void {
23227
23227
  /* NEEDED */ super.encode(stream);
23228
- encodeUABoolean(this.isAbstract, stream);
23229
- encodeUABoolean(this.symmetric, stream);
23228
+ encodeBoolean(this.isAbstract, stream);
23229
+ encodeBoolean(this.symmetric, stream);
23230
23230
  encodeLocalizedText(this.inverseName, stream);
23231
23231
  }
23232
23232
  public decode(stream: BinaryStream): void {
23233
23233
  // call base class implementation first
23234
23234
  /* NEEDED !!! */ super.decode(stream);
23235
- this.isAbstract = decodeUABoolean(stream, this.isAbstract);
23236
- this.symmetric = decodeUABoolean(stream, this.symmetric);
23235
+ this.isAbstract = decodeBoolean(stream, this.isAbstract);
23236
+ this.symmetric = decodeBoolean(stream, this.symmetric);
23237
23237
  this.inverseName = decodeLocalizedText(stream, this.inverseName);
23238
23238
  }
23239
23239
  public get schema(): StructuredTypeSchema { return schemaReferenceTypeAttributes; }
@@ -23270,12 +23270,12 @@ const schemaReferenceTypeNode = buildStructuredType({
23270
23270
  {
23271
23271
  name: "isAbstract",
23272
23272
 
23273
- fieldType: "UABoolean",
23273
+ fieldType: "Boolean",
23274
23274
  },
23275
23275
  {
23276
23276
  name: "symmetric",
23277
23277
 
23278
- fieldType: "UABoolean",
23278
+ fieldType: "Boolean",
23279
23279
  },
23280
23280
  {
23281
23281
  name: "inverseName",
@@ -23356,8 +23356,8 @@ export class ReferenceTypeNode extends TypeNode {
23356
23356
  encodeArray(this.rolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
23357
23357
  encodeArray(this.userRolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
23358
23358
  encodeArray(this.references, stream, (obj, stream1) => { obj.encode(stream1); });
23359
- encodeUABoolean(this.isAbstract, stream);
23360
- encodeUABoolean(this.symmetric, stream);
23359
+ encodeBoolean(this.isAbstract, stream);
23360
+ encodeBoolean(this.symmetric, stream);
23361
23361
  encodeLocalizedText(this.inverseName, stream);
23362
23362
  }
23363
23363
  public decode(stream: BinaryStream): void {
@@ -23378,8 +23378,8 @@ export class ReferenceTypeNode extends TypeNode {
23378
23378
  obj.decode(stream1);
23379
23379
  return obj;
23380
23380
  });
23381
- this.isAbstract = decodeUABoolean(stream, this.isAbstract);
23382
- this.symmetric = decodeUABoolean(stream, this.symmetric);
23381
+ this.isAbstract = decodeBoolean(stream, this.isAbstract);
23382
+ this.symmetric = decodeBoolean(stream, this.symmetric);
23383
23383
  this.inverseName = decodeLocalizedText(stream, this.inverseName);
23384
23384
  }
23385
23385
  public get schema(): StructuredTypeSchema { return schemaReferenceTypeNode; }
@@ -23542,12 +23542,12 @@ const schemaRegisteredServer = buildStructuredType({
23542
23542
  {
23543
23543
  name: "serverUri",
23544
23544
 
23545
- fieldType: "UAString",
23545
+ fieldType: "String",
23546
23546
  },
23547
23547
  {
23548
23548
  name: "productUri",
23549
23549
 
23550
- fieldType: "UAString",
23550
+ fieldType: "String",
23551
23551
  },
23552
23552
  {
23553
23553
  name: "serverNames",
@@ -23563,23 +23563,23 @@ const schemaRegisteredServer = buildStructuredType({
23563
23563
  {
23564
23564
  name: "gatewayServerUri",
23565
23565
 
23566
- fieldType: "UAString",
23566
+ fieldType: "String",
23567
23567
  },
23568
23568
  {
23569
23569
  name: "discoveryUrls",
23570
23570
 
23571
- fieldType: "UAString",
23571
+ fieldType: "String",
23572
23572
  isArray: true
23573
23573
  },
23574
23574
  {
23575
23575
  name: "semaphoreFilePath",
23576
23576
 
23577
- fieldType: "UAString",
23577
+ fieldType: "String",
23578
23578
  },
23579
23579
  {
23580
23580
  name: "isOnline",
23581
23581
 
23582
- fieldType: "UABoolean",
23582
+ fieldType: "Boolean",
23583
23583
  },
23584
23584
  ]
23585
23585
  });
@@ -23650,26 +23650,26 @@ export class RegisteredServer extends ExtensionObject {
23650
23650
  }
23651
23651
  public encode(stream: OutputBinaryStream): void {
23652
23652
  /* NEEDED */ super.encode(stream);
23653
- encodeUAString(this.serverUri, stream);
23654
- encodeUAString(this.productUri, stream);
23653
+ encodeString(this.serverUri, stream);
23654
+ encodeString(this.productUri, stream);
23655
23655
  encodeArray(this.serverNames, stream, encodeLocalizedText);
23656
23656
  encodeApplicationType(this.serverType, stream);
23657
- encodeUAString(this.gatewayServerUri, stream);
23658
- encodeArray(this.discoveryUrls, stream, encodeUAString);
23659
- encodeUAString(this.semaphoreFilePath, stream);
23660
- encodeUABoolean(this.isOnline, stream);
23657
+ encodeString(this.gatewayServerUri, stream);
23658
+ encodeArray(this.discoveryUrls, stream, encodeString);
23659
+ encodeString(this.semaphoreFilePath, stream);
23660
+ encodeBoolean(this.isOnline, stream);
23661
23661
  }
23662
23662
  public decode(stream: BinaryStream): void {
23663
23663
  // call base class implementation first
23664
23664
  /* NEEDED !!! */ super.decode(stream);
23665
- this.serverUri = decodeUAString(stream, this.serverUri);
23666
- this.productUri = decodeUAString(stream, this.productUri);
23665
+ this.serverUri = decodeString(stream, this.serverUri);
23666
+ this.productUri = decodeString(stream, this.productUri);
23667
23667
  this.serverNames = decodeArray(stream, decodeLocalizedText);
23668
23668
  this.serverType = decodeApplicationType(stream, this.serverType);
23669
- this.gatewayServerUri = decodeUAString(stream, this.gatewayServerUri);
23670
- this.discoveryUrls = decodeArray(stream, decodeUAString);
23671
- this.semaphoreFilePath = decodeUAString(stream, this.semaphoreFilePath);
23672
- this.isOnline = decodeUABoolean(stream, this.isOnline);
23669
+ this.gatewayServerUri = decodeString(stream, this.gatewayServerUri);
23670
+ this.discoveryUrls = decodeArray(stream, decodeString);
23671
+ this.semaphoreFilePath = decodeString(stream, this.semaphoreFilePath);
23672
+ this.isOnline = decodeBoolean(stream, this.isOnline);
23673
23673
  }
23674
23674
 
23675
23675
  // Define Enumeration setters
@@ -24773,7 +24773,7 @@ const schemaSessionDiagnosticsDataType = buildStructuredType({
24773
24773
  {
24774
24774
  name: "sessionName",
24775
24775
 
24776
- fieldType: "UAString",
24776
+ fieldType: "String",
24777
24777
  },
24778
24778
  {
24779
24779
  name: "clientDescription",
@@ -24783,17 +24783,17 @@ const schemaSessionDiagnosticsDataType = buildStructuredType({
24783
24783
  {
24784
24784
  name: "serverUri",
24785
24785
 
24786
- fieldType: "UAString",
24786
+ fieldType: "String",
24787
24787
  },
24788
24788
  {
24789
24789
  name: "endpointUrl",
24790
24790
 
24791
- fieldType: "UAString",
24791
+ fieldType: "String",
24792
24792
  },
24793
24793
  {
24794
24794
  name: "localeIds",
24795
24795
 
24796
- fieldType: "UAString",
24796
+ fieldType: "String",
24797
24797
  isArray: true
24798
24798
  },
24799
24799
  {
@@ -25226,11 +25226,11 @@ export class SessionDiagnosticsDataType extends ExtensionObject {
25226
25226
  public encode(stream: OutputBinaryStream): void {
25227
25227
  /* NEEDED */ super.encode(stream);
25228
25228
  encodeNodeId(this.sessionId, stream);
25229
- encodeUAString(this.sessionName, stream);
25229
+ encodeString(this.sessionName, stream);
25230
25230
  this.clientDescription.encode(stream);
25231
- encodeUAString(this.serverUri, stream);
25232
- encodeUAString(this.endpointUrl, stream);
25233
- encodeArray(this.localeIds, stream, encodeUAString);
25231
+ encodeString(this.serverUri, stream);
25232
+ encodeString(this.endpointUrl, stream);
25233
+ encodeArray(this.localeIds, stream, encodeString);
25234
25234
  encodeDouble(this.actualSessionTimeout, stream);
25235
25235
  encodeUInt32(this.maxResponseMessageSize, stream);
25236
25236
  encodeDateTime(this.clientConnectionTime, stream);
@@ -25273,11 +25273,11 @@ export class SessionDiagnosticsDataType extends ExtensionObject {
25273
25273
  // call base class implementation first
25274
25274
  /* NEEDED !!! */ super.decode(stream);
25275
25275
  this.sessionId = decodeNodeId(stream, this.sessionId);
25276
- this.sessionName = decodeUAString(stream, this.sessionName);
25276
+ this.sessionName = decodeString(stream, this.sessionName);
25277
25277
  this.clientDescription.decode(stream);
25278
- this.serverUri = decodeUAString(stream, this.serverUri);
25279
- this.endpointUrl = decodeUAString(stream, this.endpointUrl);
25280
- this.localeIds = decodeArray(stream, decodeUAString);
25278
+ this.serverUri = decodeString(stream, this.serverUri);
25279
+ this.endpointUrl = decodeString(stream, this.endpointUrl);
25280
+ this.localeIds = decodeArray(stream, decodeString);
25281
25281
  this.actualSessionTimeout = decodeDouble(stream, this.actualSessionTimeout);
25282
25282
  this.maxResponseMessageSize = decodeUInt32(stream, this.maxResponseMessageSize);
25283
25283
  this.clientConnectionTime = decodeDateTime(stream, this.clientConnectionTime);
@@ -25337,28 +25337,28 @@ const schemaSessionSecurityDiagnosticsDataType = buildStructuredType({
25337
25337
  {
25338
25338
  name: "clientUserIdOfSession",
25339
25339
 
25340
- fieldType: "UAString",
25340
+ fieldType: "String",
25341
25341
  },
25342
25342
  {
25343
25343
  name: "clientUserIdHistory",
25344
25344
 
25345
- fieldType: "UAString",
25345
+ fieldType: "String",
25346
25346
  isArray: true
25347
25347
  },
25348
25348
  {
25349
25349
  name: "authenticationMechanism",
25350
25350
 
25351
- fieldType: "UAString",
25351
+ fieldType: "String",
25352
25352
  },
25353
25353
  {
25354
25354
  name: "encoding",
25355
25355
 
25356
- fieldType: "UAString",
25356
+ fieldType: "String",
25357
25357
  },
25358
25358
  {
25359
25359
  name: "transportProtocol",
25360
25360
 
25361
- fieldType: "UAString",
25361
+ fieldType: "String",
25362
25362
  },
25363
25363
  {
25364
25364
  name: "securityMode",
@@ -25368,7 +25368,7 @@ const schemaSessionSecurityDiagnosticsDataType = buildStructuredType({
25368
25368
  {
25369
25369
  name: "securityPolicyUri",
25370
25370
 
25371
- fieldType: "UAString",
25371
+ fieldType: "String",
25372
25372
  },
25373
25373
  {
25374
25374
  name: "clientCertificate",
@@ -25450,26 +25450,26 @@ export class SessionSecurityDiagnosticsDataType extends ExtensionObject {
25450
25450
  public encode(stream: OutputBinaryStream): void {
25451
25451
  /* NEEDED */ super.encode(stream);
25452
25452
  encodeNodeId(this.sessionId, stream);
25453
- encodeUAString(this.clientUserIdOfSession, stream);
25454
- encodeArray(this.clientUserIdHistory, stream, encodeUAString);
25455
- encodeUAString(this.authenticationMechanism, stream);
25456
- encodeUAString(this.encoding, stream);
25457
- encodeUAString(this.transportProtocol, stream);
25453
+ encodeString(this.clientUserIdOfSession, stream);
25454
+ encodeArray(this.clientUserIdHistory, stream, encodeString);
25455
+ encodeString(this.authenticationMechanism, stream);
25456
+ encodeString(this.encoding, stream);
25457
+ encodeString(this.transportProtocol, stream);
25458
25458
  encodeMessageSecurityMode(this.securityMode, stream);
25459
- encodeUAString(this.securityPolicyUri, stream);
25459
+ encodeString(this.securityPolicyUri, stream);
25460
25460
  encodeByteString(this.clientCertificate, stream);
25461
25461
  }
25462
25462
  public decode(stream: BinaryStream): void {
25463
25463
  // call base class implementation first
25464
25464
  /* NEEDED !!! */ super.decode(stream);
25465
25465
  this.sessionId = decodeNodeId(stream, this.sessionId);
25466
- this.clientUserIdOfSession = decodeUAString(stream, this.clientUserIdOfSession);
25467
- this.clientUserIdHistory = decodeArray(stream, decodeUAString);
25468
- this.authenticationMechanism = decodeUAString(stream, this.authenticationMechanism);
25469
- this.encoding = decodeUAString(stream, this.encoding);
25470
- this.transportProtocol = decodeUAString(stream, this.transportProtocol);
25466
+ this.clientUserIdOfSession = decodeString(stream, this.clientUserIdOfSession);
25467
+ this.clientUserIdHistory = decodeArray(stream, decodeString);
25468
+ this.authenticationMechanism = decodeString(stream, this.authenticationMechanism);
25469
+ this.encoding = decodeString(stream, this.encoding);
25470
+ this.transportProtocol = decodeString(stream, this.transportProtocol);
25471
25471
  this.securityMode = decodeMessageSecurityMode(stream, this.securityMode);
25472
- this.securityPolicyUri = decodeUAString(stream, this.securityPolicyUri);
25472
+ this.securityPolicyUri = decodeString(stream, this.securityPolicyUri);
25473
25473
  this.clientCertificate = decodeByteString(stream, this.clientCertificate);
25474
25474
  }
25475
25475
 
@@ -25504,19 +25504,19 @@ const schemaSessionlessInvokeRequestType = buildStructuredType({
25504
25504
  {
25505
25505
  name: "namespaceUris",
25506
25506
 
25507
- fieldType: "UAString",
25507
+ fieldType: "String",
25508
25508
  isArray: true
25509
25509
  },
25510
25510
  {
25511
25511
  name: "serverUris",
25512
25512
 
25513
- fieldType: "UAString",
25513
+ fieldType: "String",
25514
25514
  isArray: true
25515
25515
  },
25516
25516
  {
25517
25517
  name: "localeIds",
25518
25518
 
25519
- fieldType: "UAString",
25519
+ fieldType: "String",
25520
25520
  isArray: true
25521
25521
  },
25522
25522
  {
@@ -25579,18 +25579,18 @@ export class SessionlessInvokeRequestType extends ExtensionObject {
25579
25579
  public encode(stream: OutputBinaryStream): void {
25580
25580
  /* NEEDED */ super.encode(stream);
25581
25581
  encodeUInt32(this.urisVersion, stream);
25582
- encodeArray(this.namespaceUris, stream, encodeUAString);
25583
- encodeArray(this.serverUris, stream, encodeUAString);
25584
- encodeArray(this.localeIds, stream, encodeUAString);
25582
+ encodeArray(this.namespaceUris, stream, encodeString);
25583
+ encodeArray(this.serverUris, stream, encodeString);
25584
+ encodeArray(this.localeIds, stream, encodeString);
25585
25585
  encodeUInt32(this.serviceId, stream);
25586
25586
  }
25587
25587
  public decode(stream: BinaryStream): void {
25588
25588
  // call base class implementation first
25589
25589
  /* NEEDED !!! */ super.decode(stream);
25590
25590
  this.urisVersion = decodeUInt32(stream, this.urisVersion);
25591
- this.namespaceUris = decodeArray(stream, decodeUAString);
25592
- this.serverUris = decodeArray(stream, decodeUAString);
25593
- this.localeIds = decodeArray(stream, decodeUAString);
25591
+ this.namespaceUris = decodeArray(stream, decodeString);
25592
+ this.serverUris = decodeArray(stream, decodeString);
25593
+ this.localeIds = decodeArray(stream, decodeString);
25594
25594
  this.serviceId = decodeUInt32(stream, this.serviceId);
25595
25595
  }
25596
25596
  public get schema(): StructuredTypeSchema { return schemaSessionlessInvokeRequestType; }
@@ -25609,13 +25609,13 @@ const schemaSessionlessInvokeResponseType = buildStructuredType({
25609
25609
  {
25610
25610
  name: "namespaceUris",
25611
25611
 
25612
- fieldType: "UAString",
25612
+ fieldType: "String",
25613
25613
  isArray: true
25614
25614
  },
25615
25615
  {
25616
25616
  name: "serverUris",
25617
25617
 
25618
- fieldType: "UAString",
25618
+ fieldType: "String",
25619
25619
  isArray: true
25620
25620
  },
25621
25621
  {
@@ -25667,15 +25667,15 @@ export class SessionlessInvokeResponseType extends ExtensionObject {
25667
25667
  }
25668
25668
  public encode(stream: OutputBinaryStream): void {
25669
25669
  /* NEEDED */ super.encode(stream);
25670
- encodeArray(this.namespaceUris, stream, encodeUAString);
25671
- encodeArray(this.serverUris, stream, encodeUAString);
25670
+ encodeArray(this.namespaceUris, stream, encodeString);
25671
+ encodeArray(this.serverUris, stream, encodeString);
25672
25672
  encodeUInt32(this.serviceId, stream);
25673
25673
  }
25674
25674
  public decode(stream: BinaryStream): void {
25675
25675
  // call base class implementation first
25676
25676
  /* NEEDED !!! */ super.decode(stream);
25677
- this.namespaceUris = decodeArray(stream, decodeUAString);
25678
- this.serverUris = decodeArray(stream, decodeUAString);
25677
+ this.namespaceUris = decodeArray(stream, decodeString);
25678
+ this.serverUris = decodeArray(stream, decodeString);
25679
25679
  this.serviceId = decodeUInt32(stream, this.serviceId);
25680
25680
  }
25681
25681
  public get schema(): StructuredTypeSchema { return schemaSessionlessInvokeResponseType; }
@@ -25891,7 +25891,7 @@ const schemaSetPublishingModeRequest = buildStructuredType({
25891
25891
  {
25892
25892
  name: "publishingEnabled",
25893
25893
 
25894
- fieldType: "UABoolean",
25894
+ fieldType: "Boolean",
25895
25895
  },
25896
25896
  {
25897
25897
  name: "subscriptionIds",
@@ -25944,14 +25944,14 @@ export class SetPublishingModeRequest extends ExtensionObject {
25944
25944
  public encode(stream: OutputBinaryStream): void {
25945
25945
  /* NEEDED */ super.encode(stream);
25946
25946
  this.requestHeader.encode(stream);
25947
- encodeUABoolean(this.publishingEnabled, stream);
25947
+ encodeBoolean(this.publishingEnabled, stream);
25948
25948
  encodeArray(this.subscriptionIds, stream, encodeUInt32);
25949
25949
  }
25950
25950
  public decode(stream: BinaryStream): void {
25951
25951
  // call base class implementation first
25952
25952
  /* NEEDED !!! */ super.decode(stream);
25953
25953
  this.requestHeader.decode(stream);
25954
- this.publishingEnabled = decodeUABoolean(stream, this.publishingEnabled);
25954
+ this.publishingEnabled = decodeBoolean(stream, this.publishingEnabled);
25955
25955
  this.subscriptionIds = decodeArray(stream, decodeUInt32);
25956
25956
  }
25957
25957
  public get schema(): StructuredTypeSchema { return schemaSetPublishingModeRequest; }
@@ -26275,7 +26275,7 @@ const schemaStandaloneSubscribedDataSetRefDataType = buildStructuredType({
26275
26275
  {
26276
26276
  name: "dataSetName",
26277
26277
 
26278
- fieldType: "UAString",
26278
+ fieldType: "String",
26279
26279
  },
26280
26280
  ]
26281
26281
  });
@@ -26311,12 +26311,12 @@ export class StandaloneSubscribedDataSetRefDataType extends SubscribedDataSetDat
26311
26311
  }
26312
26312
  public encode(stream: OutputBinaryStream): void {
26313
26313
  /* NEEDED */ super.encode(stream);
26314
- encodeUAString(this.dataSetName, stream);
26314
+ encodeString(this.dataSetName, stream);
26315
26315
  }
26316
26316
  public decode(stream: BinaryStream): void {
26317
26317
  // call base class implementation first
26318
26318
  /* NEEDED !!! */ super.decode(stream);
26319
- this.dataSetName = decodeUAString(stream, this.dataSetName);
26319
+ this.dataSetName = decodeString(stream, this.dataSetName);
26320
26320
  }
26321
26321
  public get schema(): StructuredTypeSchema { return schemaStandaloneSubscribedDataSetRefDataType; }
26322
26322
  }
@@ -26405,7 +26405,7 @@ const schemaSubscribedDataSetMirrorDataType = buildStructuredType({
26405
26405
  {
26406
26406
  name: "parentNodeName",
26407
26407
 
26408
- fieldType: "UAString",
26408
+ fieldType: "String",
26409
26409
  },
26410
26410
  {
26411
26411
  name: "rolePermissions",
@@ -26456,13 +26456,13 @@ export class SubscribedDataSetMirrorDataType extends SubscribedDataSetDataType {
26456
26456
  }
26457
26457
  public encode(stream: OutputBinaryStream): void {
26458
26458
  /* NEEDED */ super.encode(stream);
26459
- encodeUAString(this.parentNodeName, stream);
26459
+ encodeString(this.parentNodeName, stream);
26460
26460
  encodeArray(this.rolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
26461
26461
  }
26462
26462
  public decode(stream: BinaryStream): void {
26463
26463
  // call base class implementation first
26464
26464
  /* NEEDED !!! */ super.decode(stream);
26465
- this.parentNodeName = decodeUAString(stream, this.parentNodeName);
26465
+ this.parentNodeName = decodeString(stream, this.parentNodeName);
26466
26466
  this.rolePermissions = decodeArray(stream, (stream1: BinaryStream) => {
26467
26467
  const obj = new RolePermissionType(null);
26468
26468
  obj.decode(stream1);
@@ -26520,7 +26520,7 @@ const schemaSubscriptionDiagnosticsDataType = buildStructuredType({
26520
26520
  {
26521
26521
  name: "publishingEnabled",
26522
26522
 
26523
- fieldType: "UABoolean",
26523
+ fieldType: "Boolean",
26524
26524
  },
26525
26525
  {
26526
26526
  name: "modifyCount",
@@ -26828,7 +26828,7 @@ export class SubscriptionDiagnosticsDataType extends ExtensionObject {
26828
26828
  encodeUInt32(this.maxKeepAliveCount, stream);
26829
26829
  encodeUInt32(this.maxLifetimeCount, stream);
26830
26830
  encodeUInt32(this.maxNotificationsPerPublish, stream);
26831
- encodeUABoolean(this.publishingEnabled, stream);
26831
+ encodeBoolean(this.publishingEnabled, stream);
26832
26832
  encodeUInt32(this.modifyCount, stream);
26833
26833
  encodeUInt32(this.enableCount, stream);
26834
26834
  encodeUInt32(this.disableCount, stream);
@@ -26863,7 +26863,7 @@ export class SubscriptionDiagnosticsDataType extends ExtensionObject {
26863
26863
  this.maxKeepAliveCount = decodeUInt32(stream, this.maxKeepAliveCount);
26864
26864
  this.maxLifetimeCount = decodeUInt32(stream, this.maxLifetimeCount);
26865
26865
  this.maxNotificationsPerPublish = decodeUInt32(stream, this.maxNotificationsPerPublish);
26866
- this.publishingEnabled = decodeUABoolean(stream, this.publishingEnabled);
26866
+ this.publishingEnabled = decodeBoolean(stream, this.publishingEnabled);
26867
26867
  this.modifyCount = decodeUInt32(stream, this.modifyCount);
26868
26868
  this.enableCount = decodeUInt32(stream, this.enableCount);
26869
26869
  this.disableCount = decodeUInt32(stream, this.disableCount);
@@ -27345,7 +27345,7 @@ const schemaTimeZoneDataType = buildStructuredType({
27345
27345
  {
27346
27346
  name: "daylightSavingInOffset",
27347
27347
 
27348
- fieldType: "UABoolean",
27348
+ fieldType: "Boolean",
27349
27349
  },
27350
27350
  ]
27351
27351
  });
@@ -27387,13 +27387,13 @@ export class TimeZoneDataType extends ExtensionObject {
27387
27387
  public encode(stream: OutputBinaryStream): void {
27388
27388
  /* NEEDED */ super.encode(stream);
27389
27389
  encodeInt16(this.offset, stream);
27390
- encodeUABoolean(this.daylightSavingInOffset, stream);
27390
+ encodeBoolean(this.daylightSavingInOffset, stream);
27391
27391
  }
27392
27392
  public decode(stream: BinaryStream): void {
27393
27393
  // call base class implementation first
27394
27394
  /* NEEDED !!! */ super.decode(stream);
27395
27395
  this.offset = decodeInt16(stream, this.offset);
27396
- this.daylightSavingInOffset = decodeUABoolean(stream, this.daylightSavingInOffset);
27396
+ this.daylightSavingInOffset = decodeBoolean(stream, this.daylightSavingInOffset);
27397
27397
  }
27398
27398
  public get schema(): StructuredTypeSchema { return schemaTimeZoneDataType; }
27399
27399
  }
@@ -27494,7 +27494,7 @@ const schemaTransferSubscriptionsRequest = buildStructuredType({
27494
27494
  {
27495
27495
  name: "sendInitialValues",
27496
27496
 
27497
- fieldType: "UABoolean",
27497
+ fieldType: "Boolean",
27498
27498
  },
27499
27499
  ]
27500
27500
  });
@@ -27542,14 +27542,14 @@ export class TransferSubscriptionsRequest extends ExtensionObject {
27542
27542
  /* NEEDED */ super.encode(stream);
27543
27543
  this.requestHeader.encode(stream);
27544
27544
  encodeArray(this.subscriptionIds, stream, encodeUInt32);
27545
- encodeUABoolean(this.sendInitialValues, stream);
27545
+ encodeBoolean(this.sendInitialValues, stream);
27546
27546
  }
27547
27547
  public decode(stream: BinaryStream): void {
27548
27548
  // call base class implementation first
27549
27549
  /* NEEDED !!! */ super.decode(stream);
27550
27550
  this.requestHeader.decode(stream);
27551
27551
  this.subscriptionIds = decodeArray(stream, decodeUInt32);
27552
- this.sendInitialValues = decodeUABoolean(stream, this.sendInitialValues);
27552
+ this.sendInitialValues = decodeBoolean(stream, this.sendInitialValues);
27553
27553
  }
27554
27554
  public get schema(): StructuredTypeSchema { return schemaTransferSubscriptionsRequest; }
27555
27555
  }
@@ -27881,7 +27881,7 @@ const schemaTransmitQosPriorityDataType = buildStructuredType({
27881
27881
  {
27882
27882
  name: "priorityLabel",
27883
27883
 
27884
- fieldType: "UAString",
27884
+ fieldType: "String",
27885
27885
  },
27886
27886
  ]
27887
27887
  });
@@ -27917,12 +27917,12 @@ export class TransmitQosPriorityDataType extends TransmitQosDataType {
27917
27917
  }
27918
27918
  public encode(stream: OutputBinaryStream): void {
27919
27919
  /* NEEDED */ super.encode(stream);
27920
- encodeUAString(this.priorityLabel, stream);
27920
+ encodeString(this.priorityLabel, stream);
27921
27921
  }
27922
27922
  public decode(stream: BinaryStream): void {
27923
27923
  // call base class implementation first
27924
27924
  /* NEEDED !!! */ super.decode(stream);
27925
- this.priorityLabel = decodeUAString(stream, this.priorityLabel);
27925
+ this.priorityLabel = decodeString(stream, this.priorityLabel);
27926
27926
  }
27927
27927
  public get schema(): StructuredTypeSchema { return schemaTransmitQosPriorityDataType; }
27928
27928
  }
@@ -28051,7 +28051,7 @@ const schemaUABinaryFileDataType = buildStructuredType({
28051
28051
  {
28052
28052
  name: "schemaLocation",
28053
28053
 
28054
- fieldType: "UAString",
28054
+ fieldType: "String",
28055
28055
  },
28056
28056
  {
28057
28057
  name: "fileHeader",
@@ -28112,14 +28112,14 @@ export class UABinaryFileDataType extends DataTypeSchemaHeader {
28112
28112
  }
28113
28113
  public encode(stream: OutputBinaryStream): void {
28114
28114
  /* NEEDED */ super.encode(stream);
28115
- encodeUAString(this.schemaLocation, stream);
28115
+ encodeString(this.schemaLocation, stream);
28116
28116
  encodeArray(this.fileHeader, stream, (obj, stream1) => { obj.encode(stream1); });
28117
28117
  encodeVariant(this.body, stream);
28118
28118
  }
28119
28119
  public decode(stream: BinaryStream): void {
28120
28120
  // call base class implementation first
28121
28121
  /* NEEDED !!! */ super.decode(stream);
28122
- this.schemaLocation = decodeUAString(stream, this.schemaLocation);
28122
+ this.schemaLocation = decodeString(stream, this.schemaLocation);
28123
28123
  this.fileHeader = decodeArray(stream, (stream1: BinaryStream) => {
28124
28124
  const obj = new KeyValuePair(null);
28125
28125
  obj.decode(stream1);
@@ -29197,7 +29197,7 @@ const schemaUserManagementDataType = buildStructuredType({
29197
29197
  {
29198
29198
  name: "userName",
29199
29199
 
29200
- fieldType: "UAString",
29200
+ fieldType: "String",
29201
29201
  },
29202
29202
  {
29203
29203
  name: "userConfiguration",
@@ -29207,7 +29207,7 @@ const schemaUserManagementDataType = buildStructuredType({
29207
29207
  {
29208
29208
  name: "description",
29209
29209
 
29210
- fieldType: "UAString",
29210
+ fieldType: "String",
29211
29211
  },
29212
29212
  ]
29213
29213
  });
@@ -29253,16 +29253,16 @@ export class UserManagementDataType extends ExtensionObject {
29253
29253
  }
29254
29254
  public encode(stream: OutputBinaryStream): void {
29255
29255
  /* NEEDED */ super.encode(stream);
29256
- encodeUAString(this.userName, stream);
29256
+ encodeString(this.userName, stream);
29257
29257
  encodeUserConfigurationMask(this.userConfiguration, stream);
29258
- encodeUAString(this.description, stream);
29258
+ encodeString(this.description, stream);
29259
29259
  }
29260
29260
  public decode(stream: BinaryStream): void {
29261
29261
  // call base class implementation first
29262
29262
  /* NEEDED !!! */ super.decode(stream);
29263
- this.userName = decodeUAString(stream, this.userName);
29263
+ this.userName = decodeString(stream, this.userName);
29264
29264
  this.userConfiguration = decodeUserConfigurationMask(stream, this.userConfiguration);
29265
- this.description = decodeUAString(stream, this.description);
29265
+ this.description = decodeString(stream, this.description);
29266
29266
  }
29267
29267
 
29268
29268
  // Define Enumeration setters
@@ -29291,7 +29291,7 @@ const schemaUserNameIdentityToken = buildStructuredType({
29291
29291
  {
29292
29292
  name: "userName",
29293
29293
 
29294
- fieldType: "UAString",
29294
+ fieldType: "String",
29295
29295
  },
29296
29296
  {
29297
29297
  name: "password",
@@ -29301,7 +29301,7 @@ const schemaUserNameIdentityToken = buildStructuredType({
29301
29301
  {
29302
29302
  name: "encryptionAlgorithm",
29303
29303
 
29304
- fieldType: "UAString",
29304
+ fieldType: "String",
29305
29305
  },
29306
29306
  ]
29307
29307
  });
@@ -29347,16 +29347,16 @@ export class UserNameIdentityToken extends UserIdentityToken {
29347
29347
  }
29348
29348
  public encode(stream: OutputBinaryStream): void {
29349
29349
  /* NEEDED */ super.encode(stream);
29350
- encodeUAString(this.userName, stream);
29350
+ encodeString(this.userName, stream);
29351
29351
  encodeByteString(this.password, stream);
29352
- encodeUAString(this.encryptionAlgorithm, stream);
29352
+ encodeString(this.encryptionAlgorithm, stream);
29353
29353
  }
29354
29354
  public decode(stream: BinaryStream): void {
29355
29355
  // call base class implementation first
29356
29356
  /* NEEDED !!! */ super.decode(stream);
29357
- this.userName = decodeUAString(stream, this.userName);
29357
+ this.userName = decodeString(stream, this.userName);
29358
29358
  this.password = decodeByteString(stream, this.password);
29359
- this.encryptionAlgorithm = decodeUAString(stream, this.encryptionAlgorithm);
29359
+ this.encryptionAlgorithm = decodeString(stream, this.encryptionAlgorithm);
29360
29360
  }
29361
29361
  public get schema(): StructuredTypeSchema { return schemaUserNameIdentityToken; }
29362
29362
  }
@@ -29410,7 +29410,7 @@ const schemaVariableAttributes = buildStructuredType({
29410
29410
  {
29411
29411
  name: "historizing",
29412
29412
 
29413
- fieldType: "UABoolean",
29413
+ fieldType: "Boolean",
29414
29414
  },
29415
29415
  ]
29416
29416
  });
@@ -29488,7 +29488,7 @@ export class VariableAttributes extends NodeAttributes {
29488
29488
  encodeByte(this.accessLevel, stream);
29489
29489
  encodeByte(this.userAccessLevel, stream);
29490
29490
  encodeDouble(this.minimumSamplingInterval, stream);
29491
- encodeUABoolean(this.historizing, stream);
29491
+ encodeBoolean(this.historizing, stream);
29492
29492
  }
29493
29493
  public decode(stream: BinaryStream): void {
29494
29494
  // call base class implementation first
@@ -29500,7 +29500,7 @@ export class VariableAttributes extends NodeAttributes {
29500
29500
  this.accessLevel = decodeByte(stream, this.accessLevel);
29501
29501
  this.userAccessLevel = decodeByte(stream, this.userAccessLevel);
29502
29502
  this.minimumSamplingInterval = decodeDouble(stream, this.minimumSamplingInterval);
29503
- this.historizing = decodeUABoolean(stream, this.historizing);
29503
+ this.historizing = decodeBoolean(stream, this.historizing);
29504
29504
  }
29505
29505
  public get schema(): StructuredTypeSchema { return schemaVariableAttributes; }
29506
29506
  }
@@ -29572,7 +29572,7 @@ const schemaVariableNode = buildStructuredType({
29572
29572
  {
29573
29573
  name: "historizing",
29574
29574
 
29575
- fieldType: "UABoolean",
29575
+ fieldType: "Boolean",
29576
29576
  },
29577
29577
  {
29578
29578
  name: "accessLevelEx",
@@ -29690,7 +29690,7 @@ export class VariableNode extends InstanceNode {
29690
29690
  encodeByte(this.accessLevel, stream);
29691
29691
  encodeByte(this.userAccessLevel, stream);
29692
29692
  encodeDouble(this.minimumSamplingInterval, stream);
29693
- encodeUABoolean(this.historizing, stream);
29693
+ encodeBoolean(this.historizing, stream);
29694
29694
  encodeUInt32(this.accessLevelEx, stream);
29695
29695
  }
29696
29696
  public decode(stream: BinaryStream): void {
@@ -29718,7 +29718,7 @@ export class VariableNode extends InstanceNode {
29718
29718
  this.accessLevel = decodeByte(stream, this.accessLevel);
29719
29719
  this.userAccessLevel = decodeByte(stream, this.userAccessLevel);
29720
29720
  this.minimumSamplingInterval = decodeDouble(stream, this.minimumSamplingInterval);
29721
- this.historizing = decodeUABoolean(stream, this.historizing);
29721
+ this.historizing = decodeBoolean(stream, this.historizing);
29722
29722
  this.accessLevelEx = decodeUInt32(stream, this.accessLevelEx);
29723
29723
  }
29724
29724
  public get schema(): StructuredTypeSchema { return schemaVariableNode; }
@@ -29758,7 +29758,7 @@ const schemaVariableTypeAttributes = buildStructuredType({
29758
29758
  {
29759
29759
  name: "isAbstract",
29760
29760
 
29761
- fieldType: "UABoolean",
29761
+ fieldType: "Boolean",
29762
29762
  },
29763
29763
  ]
29764
29764
  });
@@ -29818,7 +29818,7 @@ export class VariableTypeAttributes extends NodeAttributes {
29818
29818
  encodeNodeId(this.dataType, stream);
29819
29819
  encodeInt32(this.valueRank, stream);
29820
29820
  encodeArray(this.arrayDimensions, stream, encodeUInt32);
29821
- encodeUABoolean(this.isAbstract, stream);
29821
+ encodeBoolean(this.isAbstract, stream);
29822
29822
  }
29823
29823
  public decode(stream: BinaryStream): void {
29824
29824
  // call base class implementation first
@@ -29827,7 +29827,7 @@ export class VariableTypeAttributes extends NodeAttributes {
29827
29827
  this.dataType = decodeNodeId(stream, this.dataType);
29828
29828
  this.valueRank = decodeInt32(stream, this.valueRank);
29829
29829
  this.arrayDimensions = decodeArray(stream, decodeUInt32);
29830
- this.isAbstract = decodeUABoolean(stream, this.isAbstract);
29830
+ this.isAbstract = decodeBoolean(stream, this.isAbstract);
29831
29831
  }
29832
29832
  public get schema(): StructuredTypeSchema { return schemaVariableTypeAttributes; }
29833
29833
  }
@@ -29884,7 +29884,7 @@ const schemaVariableTypeNode = buildStructuredType({
29884
29884
  {
29885
29885
  name: "isAbstract",
29886
29886
 
29887
- fieldType: "UABoolean",
29887
+ fieldType: "Boolean",
29888
29888
  },
29889
29889
  ]
29890
29890
  });
@@ -29974,7 +29974,7 @@ export class VariableTypeNode extends TypeNode {
29974
29974
  encodeNodeId(this.dataType, stream);
29975
29975
  encodeInt32(this.valueRank, stream);
29976
29976
  encodeArray(this.arrayDimensions, stream, encodeUInt32);
29977
- encodeUABoolean(this.isAbstract, stream);
29977
+ encodeBoolean(this.isAbstract, stream);
29978
29978
  }
29979
29979
  public decode(stream: BinaryStream): void {
29980
29980
  // call base class implementation first
@@ -29998,7 +29998,7 @@ export class VariableTypeNode extends TypeNode {
29998
29998
  this.dataType = decodeNodeId(stream, this.dataType);
29999
29999
  this.valueRank = decodeInt32(stream, this.valueRank);
30000
30000
  this.arrayDimensions = decodeArray(stream, decodeUInt32);
30001
- this.isAbstract = decodeUABoolean(stream, this.isAbstract);
30001
+ this.isAbstract = decodeBoolean(stream, this.isAbstract);
30002
30002
  }
30003
30003
  public get schema(): StructuredTypeSchema { return schemaVariableTypeNode; }
30004
30004
  }
@@ -30016,7 +30016,7 @@ const schemaViewAttributes = buildStructuredType({
30016
30016
  {
30017
30017
  name: "containsNoLoops",
30018
30018
 
30019
- fieldType: "UABoolean",
30019
+ fieldType: "Boolean",
30020
30020
  },
30021
30021
  {
30022
30022
  name: "eventNotifier",
@@ -30062,13 +30062,13 @@ export class ViewAttributes extends NodeAttributes {
30062
30062
  }
30063
30063
  public encode(stream: OutputBinaryStream): void {
30064
30064
  /* NEEDED */ super.encode(stream);
30065
- encodeUABoolean(this.containsNoLoops, stream);
30065
+ encodeBoolean(this.containsNoLoops, stream);
30066
30066
  encodeByte(this.eventNotifier, stream);
30067
30067
  }
30068
30068
  public decode(stream: BinaryStream): void {
30069
30069
  // call base class implementation first
30070
30070
  /* NEEDED !!! */ super.decode(stream);
30071
- this.containsNoLoops = decodeUABoolean(stream, this.containsNoLoops);
30071
+ this.containsNoLoops = decodeBoolean(stream, this.containsNoLoops);
30072
30072
  this.eventNotifier = decodeByte(stream, this.eventNotifier);
30073
30073
  }
30074
30074
  public get schema(): StructuredTypeSchema { return schemaViewAttributes; }
@@ -30105,7 +30105,7 @@ const schemaViewNode = buildStructuredType({
30105
30105
  {
30106
30106
  name: "containsNoLoops",
30107
30107
 
30108
- fieldType: "UABoolean",
30108
+ fieldType: "Boolean",
30109
30109
  },
30110
30110
  {
30111
30111
  name: "eventNotifier",
@@ -30181,7 +30181,7 @@ export class ViewNode extends InstanceNode {
30181
30181
  encodeArray(this.rolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
30182
30182
  encodeArray(this.userRolePermissions, stream, (obj, stream1) => { obj.encode(stream1); });
30183
30183
  encodeArray(this.references, stream, (obj, stream1) => { obj.encode(stream1); });
30184
- encodeUABoolean(this.containsNoLoops, stream);
30184
+ encodeBoolean(this.containsNoLoops, stream);
30185
30185
  encodeByte(this.eventNotifier, stream);
30186
30186
  }
30187
30187
  public decode(stream: BinaryStream): void {
@@ -30202,7 +30202,7 @@ export class ViewNode extends InstanceNode {
30202
30202
  obj.decode(stream1);
30203
30203
  return obj;
30204
30204
  });
30205
- this.containsNoLoops = decodeUABoolean(stream, this.containsNoLoops);
30205
+ this.containsNoLoops = decodeBoolean(stream, this.containsNoLoops);
30206
30206
  this.eventNotifier = decodeByte(stream, this.eventNotifier);
30207
30207
  }
30208
30208
  public get schema(): StructuredTypeSchema { return schemaViewNode; }