purecloud-flow-scripting-api-sdk-javascript 0.64.0 → 0.64.1

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.
package/types.d.ts CHANGED
@@ -21156,6 +21156,14 @@ export class ArchBaseNameValuePairs extends ArchBaseValueContainer {
21156
21156
  * reference, it needs to be in scope for this value.
21157
21157
  */
21158
21158
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
21159
+ /**
21160
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
21161
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
21162
+ * literal values, variable references, builder configuration, and no-value states. The source and
21163
+ * destination values must have the same data type.
21164
+ * @param sourceValue - the source value to copy from.
21165
+ */
21166
+ setFromValue(sourceValue: ArchBaseValue): void;
21159
21167
  /**
21160
21168
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
21161
21169
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -21473,6 +21481,14 @@ export class ArchBaseNetworkValue extends ArchBaseValue {
21473
21481
  * reference, it needs to be in scope for this value.
21474
21482
  */
21475
21483
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
21484
+ /**
21485
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
21486
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
21487
+ * literal values, variable references, builder configuration, and no-value states. The source and
21488
+ * destination values must have the same data type.
21489
+ * @param sourceValue - the source value to copy from.
21490
+ */
21491
+ setFromValue(sourceValue: ArchBaseValue): void;
21476
21492
  /**
21477
21493
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
21478
21494
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -21833,6 +21849,14 @@ export class ArchBaseNetworkValueCollection extends ArchBaseNetworkValue {
21833
21849
  * reference, it needs to be in scope for this value.
21834
21850
  */
21835
21851
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
21852
+ /**
21853
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
21854
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
21855
+ * literal values, variable references, builder configuration, and no-value states. The source and
21856
+ * destination values must have the same data type.
21857
+ * @param sourceValue - the source value to copy from.
21858
+ */
21859
+ setFromValue(sourceValue: ArchBaseValue): void;
21836
21860
  /**
21837
21861
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
21838
21862
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -22143,6 +22167,14 @@ export class ArchBaseNetworkValueContainer extends ArchBaseNetworkValue {
22143
22167
  * reference, it needs to be in scope for this value.
22144
22168
  */
22145
22169
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
22170
+ /**
22171
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
22172
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
22173
+ * literal values, variable references, builder configuration, and no-value states. The source and
22174
+ * destination values must have the same data type.
22175
+ * @param sourceValue - the source value to copy from.
22176
+ */
22177
+ setFromValue(sourceValue: ArchBaseValue): void;
22146
22178
  /**
22147
22179
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
22148
22180
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -22485,6 +22517,14 @@ export class ArchBaseNetworkValueSingleton extends ArchBaseNetworkValue {
22485
22517
  * reference, it needs to be in scope for this value.
22486
22518
  */
22487
22519
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
22520
+ /**
22521
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
22522
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
22523
+ * literal values, variable references, builder configuration, and no-value states. The source and
22524
+ * destination values must have the same data type.
22525
+ * @param sourceValue - the source value to copy from.
22526
+ */
22527
+ setFromValue(sourceValue: ArchBaseValue): void;
22488
22528
  /**
22489
22529
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
22490
22530
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -22944,6 +22984,14 @@ export class ArchBaseSkillValuePair extends ArchBaseNetworkValueSingleton {
22944
22984
  * reference, it needs to be in scope for this value.
22945
22985
  */
22946
22986
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
22987
+ /**
22988
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
22989
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
22990
+ * literal values, variable references, builder configuration, and no-value states. The source and
22991
+ * destination values must have the same data type.
22992
+ * @param sourceValue - the source value to copy from.
22993
+ */
22994
+ setFromValue(sourceValue: ArchBaseValue): void;
22947
22995
  /**
22948
22996
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
22949
22997
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -23288,6 +23336,14 @@ export class ArchBaseSkillValuePairs extends ArchBaseNetworkValueContainer {
23288
23336
  * reference, it needs to be in scope for this value.
23289
23337
  */
23290
23338
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
23339
+ /**
23340
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
23341
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
23342
+ * literal values, variable references, builder configuration, and no-value states. The source and
23343
+ * destination values must have the same data type.
23344
+ * @param sourceValue - the source value to copy from.
23345
+ */
23346
+ setFromValue(sourceValue: ArchBaseValue): void;
23291
23347
  /**
23292
23348
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
23293
23349
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -23610,6 +23666,14 @@ export class ArchBaseValue extends ArchBaseCoreObject {
23610
23666
  * reference, it needs to be in scope for this value.
23611
23667
  */
23612
23668
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
23669
+ /**
23670
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
23671
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
23672
+ * literal values, variable references, builder configuration, and no-value states. The source and
23673
+ * destination values must have the same data type.
23674
+ * @param sourceValue - the source value to copy from.
23675
+ */
23676
+ setFromValue(sourceValue: ArchBaseValue): void;
23613
23677
  /**
23614
23678
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
23615
23679
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -23955,6 +24019,14 @@ export class ArchBaseValueBasic extends ArchBaseValueSingleton {
23955
24019
  * reference, it needs to be in scope for this value.
23956
24020
  */
23957
24021
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
24022
+ /**
24023
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
24024
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
24025
+ * literal values, variable references, builder configuration, and no-value states. The source and
24026
+ * destination values must have the same data type.
24027
+ * @param sourceValue - the source value to copy from.
24028
+ */
24029
+ setFromValue(sourceValue: ArchBaseValue): void;
23958
24030
  /**
23959
24031
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
23960
24032
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -24303,6 +24375,14 @@ export class ArchBaseValueCollection extends ArchBaseValue {
24303
24375
  * reference, it needs to be in scope for this value.
24304
24376
  */
24305
24377
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
24378
+ /**
24379
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
24380
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
24381
+ * literal values, variable references, builder configuration, and no-value states. The source and
24382
+ * destination values must have the same data type.
24383
+ * @param sourceValue - the source value to copy from.
24384
+ */
24385
+ setFromValue(sourceValue: ArchBaseValue): void;
24306
24386
  /**
24307
24387
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
24308
24388
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -24670,6 +24750,14 @@ export class ArchBaseValueCollectionBasic extends ArchBaseValueCollection {
24670
24750
  * reference, it needs to be in scope for this value.
24671
24751
  */
24672
24752
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
24753
+ /**
24754
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
24755
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
24756
+ * literal values, variable references, builder configuration, and no-value states. The source and
24757
+ * destination values must have the same data type.
24758
+ * @param sourceValue - the source value to copy from.
24759
+ */
24760
+ setFromValue(sourceValue: ArchBaseValue): void;
24673
24761
  /**
24674
24762
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
24675
24763
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -24981,6 +25069,14 @@ export class ArchBaseValueContainer extends ArchBaseValue {
24981
25069
  * reference, it needs to be in scope for this value.
24982
25070
  */
24983
25071
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
25072
+ /**
25073
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
25074
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
25075
+ * literal values, variable references, builder configuration, and no-value states. The source and
25076
+ * destination values must have the same data type.
25077
+ * @param sourceValue - the source value to copy from.
25078
+ */
25079
+ setFromValue(sourceValue: ArchBaseValue): void;
24984
25080
  /**
24985
25081
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
24986
25082
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -25326,6 +25422,14 @@ export class ArchBaseValueSingleton extends ArchBaseValue {
25326
25422
  * reference, it needs to be in scope for this value.
25327
25423
  */
25328
25424
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
25425
+ /**
25426
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
25427
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
25428
+ * literal values, variable references, builder configuration, and no-value states. The source and
25429
+ * destination values must have the same data type.
25430
+ * @param sourceValue - the source value to copy from.
25431
+ */
25432
+ setFromValue(sourceValue: ArchBaseValue): void;
25329
25433
  /**
25330
25434
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
25331
25435
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -25669,6 +25773,14 @@ export class ArchBaseValueWithAssignableProperties extends ArchBaseValueSingleto
25669
25773
  * reference, it needs to be in scope for this value.
25670
25774
  */
25671
25775
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
25776
+ /**
25777
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
25778
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
25779
+ * literal values, variable references, builder configuration, and no-value states. The source and
25780
+ * destination values must have the same data type.
25781
+ * @param sourceValue - the source value to copy from.
25782
+ */
25783
+ setFromValue(sourceValue: ArchBaseValue): void;
25672
25784
  /**
25673
25785
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
25674
25786
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -26321,6 +26433,14 @@ export class ArchBaseVariableValuePairs extends ArchBaseValueContainer {
26321
26433
  * reference, it needs to be in scope for this value.
26322
26434
  */
26323
26435
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
26436
+ /**
26437
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
26438
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
26439
+ * literal values, variable references, builder configuration, and no-value states. The source and
26440
+ * destination values must have the same data type.
26441
+ * @param sourceValue - the source value to copy from.
26442
+ */
26443
+ setFromValue(sourceValue: ArchBaseValue): void;
26324
26444
  /**
26325
26445
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
26326
26446
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -38126,6 +38246,14 @@ export class ArchNamedValueList extends ArchBaseValueContainer {
38126
38246
  * reference, it needs to be in scope for this value.
38127
38247
  */
38128
38248
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
38249
+ /**
38250
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
38251
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
38252
+ * literal values, variable references, builder configuration, and no-value states. The source and
38253
+ * destination values must have the same data type.
38254
+ * @param sourceValue - the source value to copy from.
38255
+ */
38256
+ setFromValue(sourceValue: ArchBaseValue): void;
38129
38257
  /**
38130
38258
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
38131
38259
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -38471,6 +38599,14 @@ export class ArchValueAgentScorePair extends ArchBaseValueSingleton {
38471
38599
  * reference, it needs to be in scope for this value.
38472
38600
  */
38473
38601
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
38602
+ /**
38603
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
38604
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
38605
+ * literal values, variable references, builder configuration, and no-value states. The source and
38606
+ * destination values must have the same data type.
38607
+ * @param sourceValue - the source value to copy from.
38608
+ */
38609
+ setFromValue(sourceValue: ArchBaseValue): void;
38474
38610
  /**
38475
38611
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
38476
38612
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -38813,6 +38949,14 @@ export class ArchValueAgentScorePairCollection extends ArchBaseValueCollection {
38813
38949
  * reference, it needs to be in scope for this value.
38814
38950
  */
38815
38951
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
38952
+ /**
38953
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
38954
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
38955
+ * literal values, variable references, builder configuration, and no-value states. The source and
38956
+ * destination values must have the same data type.
38957
+ * @param sourceValue - the source value to copy from.
38958
+ */
38959
+ setFromValue(sourceValue: ArchBaseValue): void;
38816
38960
  /**
38817
38961
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
38818
38962
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -39159,6 +39303,14 @@ export class ArchValueAny extends ArchBaseValueSingleton {
39159
39303
  * reference, it needs to be in scope for this value.
39160
39304
  */
39161
39305
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
39306
+ /**
39307
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
39308
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
39309
+ * literal values, variable references, builder configuration, and no-value states. The source and
39310
+ * destination values must have the same data type.
39311
+ * @param sourceValue - the source value to copy from.
39312
+ */
39313
+ setFromValue(sourceValue: ArchBaseValue): void;
39162
39314
  /**
39163
39315
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
39164
39316
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -39501,6 +39653,14 @@ export class ArchValueAnyCollection extends ArchBaseValueCollection {
39501
39653
  * reference, it needs to be in scope for this value.
39502
39654
  */
39503
39655
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
39656
+ /**
39657
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
39658
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
39659
+ * literal values, variable references, builder configuration, and no-value states. The source and
39660
+ * destination values must have the same data type.
39661
+ * @param sourceValue - the source value to copy from.
39662
+ */
39663
+ setFromValue(sourceValue: ArchBaseValue): void;
39504
39664
  /**
39505
39665
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
39506
39666
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -39843,6 +40003,14 @@ export class ArchValueAudio extends ArchBaseValueSingleton {
39843
40003
  * reference, it needs to be in scope for this value.
39844
40004
  */
39845
40005
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
40006
+ /**
40007
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
40008
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
40009
+ * literal values, variable references, builder configuration, and no-value states. The source and
40010
+ * destination values must have the same data type.
40011
+ * @param sourceValue - the source value to copy from.
40012
+ */
40013
+ setFromValue(sourceValue: ArchBaseValue): void;
39846
40014
  /**
39847
40015
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
39848
40016
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -40204,6 +40372,14 @@ export class ArchValueBoolean extends ArchBaseValueBasic {
40204
40372
  * reference, it needs to be in scope for this value.
40205
40373
  */
40206
40374
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
40375
+ /**
40376
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
40377
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
40378
+ * literal values, variable references, builder configuration, and no-value states. The source and
40379
+ * destination values must have the same data type.
40380
+ * @param sourceValue - the source value to copy from.
40381
+ */
40382
+ setFromValue(sourceValue: ArchBaseValue): void;
40207
40383
  /**
40208
40384
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
40209
40385
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -40558,6 +40734,14 @@ export class ArchValueBooleanCollection extends ArchBaseValueCollectionBasic {
40558
40734
  * reference, it needs to be in scope for this value.
40559
40735
  */
40560
40736
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
40737
+ /**
40738
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
40739
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
40740
+ * literal values, variable references, builder configuration, and no-value states. The source and
40741
+ * destination values must have the same data type.
40742
+ * @param sourceValue - the source value to copy from.
40743
+ */
40744
+ setFromValue(sourceValue: ArchBaseValue): void;
40561
40745
  /**
40562
40746
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
40563
40747
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -40917,6 +41101,14 @@ export class ArchValueCard extends ArchBaseValueWithAssignableProperties {
40917
41101
  * reference, it needs to be in scope for this value.
40918
41102
  */
40919
41103
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
41104
+ /**
41105
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
41106
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
41107
+ * literal values, variable references, builder configuration, and no-value states. The source and
41108
+ * destination values must have the same data type.
41109
+ * @param sourceValue - the source value to copy from.
41110
+ */
41111
+ setFromValue(sourceValue: ArchBaseValue): void;
40920
41112
  /**
40921
41113
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
40922
41114
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -41259,6 +41451,14 @@ export class ArchValueCardCollection extends ArchBaseValueCollection {
41259
41451
  * reference, it needs to be in scope for this value.
41260
41452
  */
41261
41453
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
41454
+ /**
41455
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
41456
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
41457
+ * literal values, variable references, builder configuration, and no-value states. The source and
41458
+ * destination values must have the same data type.
41459
+ * @param sourceValue - the source value to copy from.
41460
+ */
41461
+ setFromValue(sourceValue: ArchBaseValue): void;
41262
41462
  /**
41263
41463
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
41264
41464
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -41612,6 +41812,14 @@ export class ArchValueCarousel extends ArchBaseValueWithAssignableProperties {
41612
41812
  * reference, it needs to be in scope for this value.
41613
41813
  */
41614
41814
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
41815
+ /**
41816
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
41817
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
41818
+ * literal values, variable references, builder configuration, and no-value states. The source and
41819
+ * destination values must have the same data type.
41820
+ * @param sourceValue - the source value to copy from.
41821
+ */
41822
+ setFromValue(sourceValue: ArchBaseValue): void;
41615
41823
  /**
41616
41824
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
41617
41825
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -41999,6 +42207,14 @@ export class ArchValueChoice extends ArchBaseValueWithAssignableProperties {
41999
42207
  * reference, it needs to be in scope for this value.
42000
42208
  */
42001
42209
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
42210
+ /**
42211
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
42212
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
42213
+ * literal values, variable references, builder configuration, and no-value states. The source and
42214
+ * destination values must have the same data type.
42215
+ * @param sourceValue - the source value to copy from.
42216
+ */
42217
+ setFromValue(sourceValue: ArchBaseValue): void;
42002
42218
  /**
42003
42219
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
42004
42220
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -42341,6 +42557,14 @@ export class ArchValueChoiceCollection extends ArchBaseValueCollection {
42341
42557
  * reference, it needs to be in scope for this value.
42342
42558
  */
42343
42559
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
42560
+ /**
42561
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
42562
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
42563
+ * literal values, variable references, builder configuration, and no-value states. The source and
42564
+ * destination values must have the same data type.
42565
+ * @param sourceValue - the source value to copy from.
42566
+ */
42567
+ setFromValue(sourceValue: ArchBaseValue): void;
42344
42568
  /**
42345
42569
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
42346
42570
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -42731,6 +42955,14 @@ export class ArchValueCommunication extends ArchBaseValueBasic {
42731
42955
  * reference, it needs to be in scope for this value.
42732
42956
  */
42733
42957
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
42958
+ /**
42959
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
42960
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
42961
+ * literal values, variable references, builder configuration, and no-value states. The source and
42962
+ * destination values must have the same data type.
42963
+ * @param sourceValue - the source value to copy from.
42964
+ */
42965
+ setFromValue(sourceValue: ArchBaseValue): void;
42734
42966
  /**
42735
42967
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
42736
42968
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -43085,6 +43317,14 @@ export class ArchValueCommunicationCollection extends ArchBaseValueCollectionBas
43085
43317
  * reference, it needs to be in scope for this value.
43086
43318
  */
43087
43319
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
43320
+ /**
43321
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
43322
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
43323
+ * literal values, variable references, builder configuration, and no-value states. The source and
43324
+ * destination values must have the same data type.
43325
+ * @param sourceValue - the source value to copy from.
43326
+ */
43327
+ setFromValue(sourceValue: ArchBaseValue): void;
43088
43328
  /**
43089
43329
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
43090
43330
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -43443,6 +43683,14 @@ export class ArchValueContactList extends ArchBaseNetworkValueSingleton {
43443
43683
  * reference, it needs to be in scope for this value.
43444
43684
  */
43445
43685
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
43686
+ /**
43687
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
43688
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
43689
+ * literal values, variable references, builder configuration, and no-value states. The source and
43690
+ * destination values must have the same data type.
43691
+ * @param sourceValue - the source value to copy from.
43692
+ */
43693
+ setFromValue(sourceValue: ArchBaseValue): void;
43446
43694
  /**
43447
43695
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
43448
43696
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -43787,6 +44035,14 @@ export class ArchValueCurrency extends ArchBaseValueBasic {
43787
44035
  * reference, it needs to be in scope for this value.
43788
44036
  */
43789
44037
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
44038
+ /**
44039
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
44040
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
44041
+ * literal values, variable references, builder configuration, and no-value states. The source and
44042
+ * destination values must have the same data type.
44043
+ * @param sourceValue - the source value to copy from.
44044
+ */
44045
+ setFromValue(sourceValue: ArchBaseValue): void;
43790
44046
  /**
43791
44047
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
43792
44048
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -44142,6 +44398,14 @@ export class ArchValueCurrencyCollection extends ArchBaseValueCollectionBasic {
44142
44398
  * reference, it needs to be in scope for this value.
44143
44399
  */
44144
44400
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
44401
+ /**
44402
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
44403
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
44404
+ * literal values, variable references, builder configuration, and no-value states. The source and
44405
+ * destination values must have the same data type.
44406
+ * @param sourceValue - the source value to copy from.
44407
+ */
44408
+ setFromValue(sourceValue: ArchBaseValue): void;
44145
44409
  /**
44146
44410
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
44147
44411
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -44494,6 +44758,14 @@ export class ArchValueDate extends ArchBaseValueBasic {
44494
44758
  * reference, it needs to be in scope for this value.
44495
44759
  */
44496
44760
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
44761
+ /**
44762
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
44763
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
44764
+ * literal values, variable references, builder configuration, and no-value states. The source and
44765
+ * destination values must have the same data type.
44766
+ * @param sourceValue - the source value to copy from.
44767
+ */
44768
+ setFromValue(sourceValue: ArchBaseValue): void;
44497
44769
  /**
44498
44770
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
44499
44771
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -44849,6 +45121,14 @@ export class ArchValueDateCollection extends ArchBaseValueCollectionBasic {
44849
45121
  * reference, it needs to be in scope for this value.
44850
45122
  */
44851
45123
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
45124
+ /**
45125
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
45126
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
45127
+ * literal values, variable references, builder configuration, and no-value states. The source and
45128
+ * destination values must have the same data type.
45129
+ * @param sourceValue - the source value to copy from.
45130
+ */
45131
+ setFromValue(sourceValue: ArchBaseValue): void;
44852
45132
  /**
44853
45133
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
44854
45134
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -45213,6 +45493,14 @@ export class ArchValueDateTime extends ArchBaseValueBasic {
45213
45493
  * reference, it needs to be in scope for this value.
45214
45494
  */
45215
45495
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
45496
+ /**
45497
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
45498
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
45499
+ * literal values, variable references, builder configuration, and no-value states. The source and
45500
+ * destination values must have the same data type.
45501
+ * @param sourceValue - the source value to copy from.
45502
+ */
45503
+ setFromValue(sourceValue: ArchBaseValue): void;
45216
45504
  /**
45217
45505
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
45218
45506
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -45568,6 +45856,14 @@ export class ArchValueDateTimeCollection extends ArchBaseValueCollectionBasic {
45568
45856
  * reference, it needs to be in scope for this value.
45569
45857
  */
45570
45858
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
45859
+ /**
45860
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
45861
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
45862
+ * literal values, variable references, builder configuration, and no-value states. The source and
45863
+ * destination values must have the same data type.
45864
+ * @param sourceValue - the source value to copy from.
45865
+ */
45866
+ setFromValue(sourceValue: ArchBaseValue): void;
45571
45867
  /**
45572
45868
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
45573
45869
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -45921,6 +46217,14 @@ export class ArchValueDecimal extends ArchBaseValueBasic {
45921
46217
  * reference, it needs to be in scope for this value.
45922
46218
  */
45923
46219
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
46220
+ /**
46221
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
46222
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
46223
+ * literal values, variable references, builder configuration, and no-value states. The source and
46224
+ * destination values must have the same data type.
46225
+ * @param sourceValue - the source value to copy from.
46226
+ */
46227
+ setFromValue(sourceValue: ArchBaseValue): void;
45924
46228
  /**
45925
46229
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
45926
46230
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -46276,6 +46580,14 @@ export class ArchValueDecimalCollection extends ArchBaseValueCollectionBasic {
46276
46580
  * reference, it needs to be in scope for this value.
46277
46581
  */
46278
46582
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
46583
+ /**
46584
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
46585
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
46586
+ * literal values, variable references, builder configuration, and no-value states. The source and
46587
+ * destination values must have the same data type.
46588
+ * @param sourceValue - the source value to copy from.
46589
+ */
46590
+ setFromValue(sourceValue: ArchBaseValue): void;
46279
46591
  /**
46280
46592
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
46281
46593
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -46638,6 +46950,14 @@ export class ArchValueDuration extends ArchBaseValueBasic {
46638
46950
  * reference, it needs to be in scope for this value.
46639
46951
  */
46640
46952
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
46953
+ /**
46954
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
46955
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
46956
+ * literal values, variable references, builder configuration, and no-value states. The source and
46957
+ * destination values must have the same data type.
46958
+ * @param sourceValue - the source value to copy from.
46959
+ */
46960
+ setFromValue(sourceValue: ArchBaseValue): void;
46641
46961
  /**
46642
46962
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
46643
46963
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -46992,6 +47312,14 @@ export class ArchValueDurationCollection extends ArchBaseValueCollectionBasic {
46992
47312
  * reference, it needs to be in scope for this value.
46993
47313
  */
46994
47314
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
47315
+ /**
47316
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
47317
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
47318
+ * literal values, variable references, builder configuration, and no-value states. The source and
47319
+ * destination values must have the same data type.
47320
+ * @param sourceValue - the source value to copy from.
47321
+ */
47322
+ setFromValue(sourceValue: ArchBaseValue): void;
46995
47323
  /**
46996
47324
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
46997
47325
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -47331,6 +47659,14 @@ export class ArchValueEmailAddress extends ArchBaseValueSingleton {
47331
47659
  * reference, it needs to be in scope for this value.
47332
47660
  */
47333
47661
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
47662
+ /**
47663
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
47664
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
47665
+ * literal values, variable references, builder configuration, and no-value states. The source and
47666
+ * destination values must have the same data type.
47667
+ * @param sourceValue - the source value to copy from.
47668
+ */
47669
+ setFromValue(sourceValue: ArchBaseValue): void;
47334
47670
  /**
47335
47671
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
47336
47672
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -47673,6 +48009,14 @@ export class ArchValueEmailAddressCollection extends ArchBaseValueCollection {
47673
48009
  * reference, it needs to be in scope for this value.
47674
48010
  */
47675
48011
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
48012
+ /**
48013
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
48014
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
48015
+ * literal values, variable references, builder configuration, and no-value states. The source and
48016
+ * destination values must have the same data type.
48017
+ * @param sourceValue - the source value to copy from.
48018
+ */
48019
+ setFromValue(sourceValue: ArchBaseValue): void;
47676
48020
  /**
47677
48021
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
47678
48022
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -48037,6 +48381,14 @@ export class ArchValueEmergencyGroup extends ArchBaseNetworkValueSingleton {
48037
48381
  * reference, it needs to be in scope for this value.
48038
48382
  */
48039
48383
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
48384
+ /**
48385
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
48386
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
48387
+ * literal values, variable references, builder configuration, and no-value states. The source and
48388
+ * destination values must have the same data type.
48389
+ * @param sourceValue - the source value to copy from.
48390
+ */
48391
+ setFromValue(sourceValue: ArchBaseValue): void;
48040
48392
  /**
48041
48393
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
48042
48394
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -48419,6 +48771,14 @@ export class ArchValueEmergencyGroupCollection extends ArchBaseNetworkValueColle
48419
48771
  * reference, it needs to be in scope for this value.
48420
48772
  */
48421
48773
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
48774
+ /**
48775
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
48776
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
48777
+ * literal values, variable references, builder configuration, and no-value states. The source and
48778
+ * destination values must have the same data type.
48779
+ * @param sourceValue - the source value to copy from.
48780
+ */
48781
+ setFromValue(sourceValue: ArchBaseValue): void;
48422
48782
  /**
48423
48783
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
48424
48784
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -48758,6 +49118,14 @@ export class ArchValueExternalContact extends ArchBaseValueSingleton {
48758
49118
  * reference, it needs to be in scope for this value.
48759
49119
  */
48760
49120
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
49121
+ /**
49122
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
49123
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
49124
+ * literal values, variable references, builder configuration, and no-value states. The source and
49125
+ * destination values must have the same data type.
49126
+ * @param sourceValue - the source value to copy from.
49127
+ */
49128
+ setFromValue(sourceValue: ArchBaseValue): void;
48761
49129
  /**
48762
49130
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
48763
49131
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -49100,6 +49468,14 @@ export class ArchValueExternalContactCollection extends ArchBaseValueCollection
49100
49468
  * reference, it needs to be in scope for this value.
49101
49469
  */
49102
49470
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
49471
+ /**
49472
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
49473
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
49474
+ * literal values, variable references, builder configuration, and no-value states. The source and
49475
+ * destination values must have the same data type.
49476
+ * @param sourceValue - the source value to copy from.
49477
+ */
49478
+ setFromValue(sourceValue: ArchBaseValue): void;
49103
49479
  /**
49104
49480
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
49105
49481
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -49445,6 +49821,14 @@ export class ArchValueExternalOrganization extends ArchBaseValueSingleton {
49445
49821
  * reference, it needs to be in scope for this value.
49446
49822
  */
49447
49823
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
49824
+ /**
49825
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
49826
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
49827
+ * literal values, variable references, builder configuration, and no-value states. The source and
49828
+ * destination values must have the same data type.
49829
+ * @param sourceValue - the source value to copy from.
49830
+ */
49831
+ setFromValue(sourceValue: ArchBaseValue): void;
49448
49832
  /**
49449
49833
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
49450
49834
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -49787,6 +50171,14 @@ export class ArchValueExternalOrganizationCollection extends ArchBaseValueCollec
49787
50171
  * reference, it needs to be in scope for this value.
49788
50172
  */
49789
50173
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
50174
+ /**
50175
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
50176
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
50177
+ * literal values, variable references, builder configuration, and no-value states. The source and
50178
+ * destination values must have the same data type.
50179
+ * @param sourceValue - the source value to copy from.
50180
+ */
50181
+ setFromValue(sourceValue: ArchBaseValue): void;
49790
50182
  /**
49791
50183
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
49792
50184
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -50157,6 +50549,14 @@ export class ArchValueGrammar extends ArchBaseValueBasic {
50157
50549
  * reference, it needs to be in scope for this value.
50158
50550
  */
50159
50551
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
50552
+ /**
50553
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
50554
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
50555
+ * literal values, variable references, builder configuration, and no-value states. The source and
50556
+ * destination values must have the same data type.
50557
+ * @param sourceValue - the source value to copy from.
50558
+ */
50559
+ setFromValue(sourceValue: ArchBaseValue): void;
50160
50560
  /**
50161
50561
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
50162
50562
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -50537,6 +50937,14 @@ export class ArchValueGrammarCollection extends ArchBaseNetworkValueCollection {
50537
50937
  * reference, it needs to be in scope for this value.
50538
50938
  */
50539
50939
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
50940
+ /**
50941
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
50942
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
50943
+ * literal values, variable references, builder configuration, and no-value states. The source and
50944
+ * destination values must have the same data type.
50945
+ * @param sourceValue - the source value to copy from.
50946
+ */
50947
+ setFromValue(sourceValue: ArchBaseValue): void;
50540
50948
  /**
50541
50949
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
50542
50950
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -50958,6 +51366,14 @@ export class ArchValueGroupCollection extends ArchBaseNetworkValueCollection {
50958
51366
  * reference, it needs to be in scope for this value.
50959
51367
  */
50960
51368
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
51369
+ /**
51370
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
51371
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
51372
+ * literal values, variable references, builder configuration, and no-value states. The source and
51373
+ * destination values must have the same data type.
51374
+ * @param sourceValue - the source value to copy from.
51375
+ */
51376
+ setFromValue(sourceValue: ArchBaseValue): void;
50961
51377
  /**
50962
51378
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
50963
51379
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -51312,6 +51728,14 @@ export class ArchValueImage extends ArchBaseNetworkValueSingleton {
51312
51728
  * reference, it needs to be in scope for this value.
51313
51729
  */
51314
51730
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
51731
+ /**
51732
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
51733
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
51734
+ * literal values, variable references, builder configuration, and no-value states. The source and
51735
+ * destination values must have the same data type.
51736
+ * @param sourceValue - the source value to copy from.
51737
+ */
51738
+ setFromValue(sourceValue: ArchBaseValue): void;
51315
51739
  /**
51316
51740
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
51317
51741
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -51667,6 +52091,14 @@ export class ArchValueImageCollection extends ArchBaseValueCollectionBasic {
51667
52091
  * reference, it needs to be in scope for this value.
51668
52092
  */
51669
52093
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
52094
+ /**
52095
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
52096
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
52097
+ * literal values, variable references, builder configuration, and no-value states. The source and
52098
+ * destination values must have the same data type.
52099
+ * @param sourceValue - the source value to copy from.
52100
+ */
52101
+ setFromValue(sourceValue: ArchBaseValue): void;
51670
52102
  /**
51671
52103
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
51672
52104
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -52027,6 +52459,14 @@ export class ArchValueInteger extends ArchBaseValueBasic {
52027
52459
  * reference, it needs to be in scope for this value.
52028
52460
  */
52029
52461
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
52462
+ /**
52463
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
52464
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
52465
+ * literal values, variable references, builder configuration, and no-value states. The source and
52466
+ * destination values must have the same data type.
52467
+ * @param sourceValue - the source value to copy from.
52468
+ */
52469
+ setFromValue(sourceValue: ArchBaseValue): void;
52030
52470
  /**
52031
52471
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
52032
52472
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -52382,6 +52822,14 @@ export class ArchValueIntegerCollection extends ArchBaseValueCollectionBasic {
52382
52822
  * reference, it needs to be in scope for this value.
52383
52823
  */
52384
52824
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
52825
+ /**
52826
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
52827
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
52828
+ * literal values, variable references, builder configuration, and no-value states. The source and
52829
+ * destination values must have the same data type.
52830
+ * @param sourceValue - the source value to copy from.
52831
+ */
52832
+ setFromValue(sourceValue: ArchBaseValue): void;
52385
52833
  /**
52386
52834
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
52387
52835
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -52721,6 +53169,14 @@ export class ArchValueJourneyOutcome extends ArchBaseValueSingleton {
52721
53169
  * reference, it needs to be in scope for this value.
52722
53170
  */
52723
53171
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
53172
+ /**
53173
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
53174
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
53175
+ * literal values, variable references, builder configuration, and no-value states. The source and
53176
+ * destination values must have the same data type.
53177
+ * @param sourceValue - the source value to copy from.
53178
+ */
53179
+ setFromValue(sourceValue: ArchBaseValue): void;
52724
53180
  /**
52725
53181
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
52726
53182
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -53063,6 +53519,14 @@ export class ArchValueJourneyOutcomeCollection extends ArchBaseValueCollection {
53063
53519
  * reference, it needs to be in scope for this value.
53064
53520
  */
53065
53521
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
53522
+ /**
53523
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
53524
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
53525
+ * literal values, variable references, builder configuration, and no-value states. The source and
53526
+ * destination values must have the same data type.
53527
+ * @param sourceValue - the source value to copy from.
53528
+ */
53529
+ setFromValue(sourceValue: ArchBaseValue): void;
53066
53530
  /**
53067
53531
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
53068
53532
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -53408,6 +53872,14 @@ export class ArchValueJourneyOutcomeScore extends ArchBaseValueSingleton {
53408
53872
  * reference, it needs to be in scope for this value.
53409
53873
  */
53410
53874
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
53875
+ /**
53876
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
53877
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
53878
+ * literal values, variable references, builder configuration, and no-value states. The source and
53879
+ * destination values must have the same data type.
53880
+ * @param sourceValue - the source value to copy from.
53881
+ */
53882
+ setFromValue(sourceValue: ArchBaseValue): void;
53411
53883
  /**
53412
53884
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
53413
53885
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -53750,6 +54222,14 @@ export class ArchValueJourneyOutcomeScoreCollection extends ArchBaseValueCollect
53750
54222
  * reference, it needs to be in scope for this value.
53751
54223
  */
53752
54224
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
54225
+ /**
54226
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
54227
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
54228
+ * literal values, variable references, builder configuration, and no-value states. The source and
54229
+ * destination values must have the same data type.
54230
+ * @param sourceValue - the source value to copy from.
54231
+ */
54232
+ setFromValue(sourceValue: ArchBaseValue): void;
53753
54233
  /**
53754
54234
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
53755
54235
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -54095,6 +54575,14 @@ export class ArchValueJourneySegment extends ArchBaseValueSingleton {
54095
54575
  * reference, it needs to be in scope for this value.
54096
54576
  */
54097
54577
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
54578
+ /**
54579
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
54580
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
54581
+ * literal values, variable references, builder configuration, and no-value states. The source and
54582
+ * destination values must have the same data type.
54583
+ * @param sourceValue - the source value to copy from.
54584
+ */
54585
+ setFromValue(sourceValue: ArchBaseValue): void;
54098
54586
  /**
54099
54587
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
54100
54588
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -54437,6 +54925,14 @@ export class ArchValueJourneySegmentCollection extends ArchBaseValueCollection {
54437
54925
  * reference, it needs to be in scope for this value.
54438
54926
  */
54439
54927
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
54928
+ /**
54929
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
54930
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
54931
+ * literal values, variable references, builder configuration, and no-value states. The source and
54932
+ * destination values must have the same data type.
54933
+ * @param sourceValue - the source value to copy from.
54934
+ */
54935
+ setFromValue(sourceValue: ArchBaseValue): void;
54440
54936
  /**
54441
54937
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
54442
54938
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -54782,6 +55278,14 @@ export class ArchValueJourneySession extends ArchBaseValueSingleton {
54782
55278
  * reference, it needs to be in scope for this value.
54783
55279
  */
54784
55280
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
55281
+ /**
55282
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
55283
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
55284
+ * literal values, variable references, builder configuration, and no-value states. The source and
55285
+ * destination values must have the same data type.
55286
+ * @param sourceValue - the source value to copy from.
55287
+ */
55288
+ setFromValue(sourceValue: ArchBaseValue): void;
54785
55289
  /**
54786
55290
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
54787
55291
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -55124,6 +55628,14 @@ export class ArchValueJourneySessionCollection extends ArchBaseValueCollection {
55124
55628
  * reference, it needs to be in scope for this value.
55125
55629
  */
55126
55630
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
55631
+ /**
55632
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
55633
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
55634
+ * literal values, variable references, builder configuration, and no-value states. The source and
55635
+ * destination values must have the same data type.
55636
+ * @param sourceValue - the source value to copy from.
55637
+ */
55638
+ setFromValue(sourceValue: ArchBaseValue): void;
55127
55639
  /**
55128
55640
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
55129
55641
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -55479,6 +55991,14 @@ export class ArchValueJson extends ArchBaseValueBasic {
55479
55991
  * reference, it needs to be in scope for this value.
55480
55992
  */
55481
55993
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
55994
+ /**
55995
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
55996
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
55997
+ * literal values, variable references, builder configuration, and no-value states. The source and
55998
+ * destination values must have the same data type.
55999
+ * @param sourceValue - the source value to copy from.
56000
+ */
56001
+ setFromValue(sourceValue: ArchBaseValue): void;
55482
56002
  /**
55483
56003
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
55484
56004
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -55833,6 +56353,14 @@ export class ArchValueJsonCollection extends ArchBaseValueCollectionBasic {
55833
56353
  * reference, it needs to be in scope for this value.
55834
56354
  */
55835
56355
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
56356
+ /**
56357
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
56358
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
56359
+ * literal values, variable references, builder configuration, and no-value states. The source and
56360
+ * destination values must have the same data type.
56361
+ * @param sourceValue - the source value to copy from.
56362
+ */
56363
+ setFromValue(sourceValue: ArchBaseValue): void;
55836
56364
  /**
55837
56365
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
55838
56366
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -56192,6 +56720,14 @@ export class ArchValueKnowledgeBaseDocument extends ArchBaseNetworkValueSingleto
56192
56720
  * reference, it needs to be in scope for this value.
56193
56721
  */
56194
56722
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
56723
+ /**
56724
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
56725
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
56726
+ * literal values, variable references, builder configuration, and no-value states. The source and
56727
+ * destination values must have the same data type.
56728
+ * @param sourceValue - the source value to copy from.
56729
+ */
56730
+ setFromValue(sourceValue: ArchBaseValue): void;
56195
56731
  /**
56196
56732
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
56197
56733
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -56571,6 +57107,14 @@ export class ArchValueKnowledgeBaseDocumentCollection extends ArchBaseNetworkVal
56571
57107
  * reference, it needs to be in scope for this value.
56572
57108
  */
56573
57109
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
57110
+ /**
57111
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
57112
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
57113
+ * literal values, variable references, builder configuration, and no-value states. The source and
57114
+ * destination values must have the same data type.
57115
+ * @param sourceValue - the source value to copy from.
57116
+ */
57117
+ setFromValue(sourceValue: ArchBaseValue): void;
56574
57118
  /**
56575
57119
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
56576
57120
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -56929,6 +57473,14 @@ export class ArchValueLanguageSkill extends ArchBaseNetworkValueSingleton {
56929
57473
  * reference, it needs to be in scope for this value.
56930
57474
  */
56931
57475
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
57476
+ /**
57477
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
57478
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
57479
+ * literal values, variable references, builder configuration, and no-value states. The source and
57480
+ * destination values must have the same data type.
57481
+ * @param sourceValue - the source value to copy from.
57482
+ */
57483
+ setFromValue(sourceValue: ArchBaseValue): void;
56932
57484
  /**
56933
57485
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
56934
57486
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -57308,6 +57860,14 @@ export class ArchValueLanguageSkillCollection extends ArchBaseNetworkValueCollec
57308
57860
  * reference, it needs to be in scope for this value.
57309
57861
  */
57310
57862
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
57863
+ /**
57864
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
57865
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
57866
+ * literal values, variable references, builder configuration, and no-value states. The source and
57867
+ * destination values must have the same data type.
57868
+ * @param sourceValue - the source value to copy from.
57869
+ */
57870
+ setFromValue(sourceValue: ArchBaseValue): void;
57311
57871
  /**
57312
57872
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
57313
57873
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -57666,6 +58226,14 @@ export class ArchValueLineItem extends ArchBaseValueWithAssignableProperties {
57666
58226
  * reference, it needs to be in scope for this value.
57667
58227
  */
57668
58228
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
58229
+ /**
58230
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
58231
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
58232
+ * literal values, variable references, builder configuration, and no-value states. The source and
58233
+ * destination values must have the same data type.
58234
+ * @param sourceValue - the source value to copy from.
58235
+ */
58236
+ setFromValue(sourceValue: ArchBaseValue): void;
57669
58237
  /**
57670
58238
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
57671
58239
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -58008,6 +58576,14 @@ export class ArchValueLineItemCollection extends ArchBaseValueCollection {
58008
58576
  * reference, it needs to be in scope for this value.
58009
58577
  */
58010
58578
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
58579
+ /**
58580
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
58581
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
58582
+ * literal values, variable references, builder configuration, and no-value states. The source and
58583
+ * destination values must have the same data type.
58584
+ * @param sourceValue - the source value to copy from.
58585
+ */
58586
+ setFromValue(sourceValue: ArchBaseValue): void;
58011
58587
  /**
58012
58588
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
58013
58589
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -58393,6 +58969,14 @@ export class ArchValueListPicker extends ArchBaseValueWithAssignableProperties {
58393
58969
  * reference, it needs to be in scope for this value.
58394
58970
  */
58395
58971
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
58972
+ /**
58973
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
58974
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
58975
+ * literal values, variable references, builder configuration, and no-value states. The source and
58976
+ * destination values must have the same data type.
58977
+ * @param sourceValue - the source value to copy from.
58978
+ */
58979
+ setFromValue(sourceValue: ArchBaseValue): void;
58396
58980
  /**
58397
58981
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
58398
58982
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -58756,6 +59340,14 @@ export class ArchValueListPickerItem extends ArchBaseValueWithAssignableProperti
58756
59340
  * reference, it needs to be in scope for this value.
58757
59341
  */
58758
59342
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
59343
+ /**
59344
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
59345
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
59346
+ * literal values, variable references, builder configuration, and no-value states. The source and
59347
+ * destination values must have the same data type.
59348
+ * @param sourceValue - the source value to copy from.
59349
+ */
59350
+ setFromValue(sourceValue: ArchBaseValue): void;
58759
59351
  /**
58760
59352
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
58761
59353
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -59111,6 +59703,14 @@ export class ArchValueListPickerItemCollection extends ArchBaseValueCollectionBa
59111
59703
  * reference, it needs to be in scope for this value.
59112
59704
  */
59113
59705
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
59706
+ /**
59707
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
59708
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
59709
+ * literal values, variable references, builder configuration, and no-value states. The source and
59710
+ * destination values must have the same data type.
59711
+ * @param sourceValue - the source value to copy from.
59712
+ */
59713
+ setFromValue(sourceValue: ArchBaseValue): void;
59114
59714
  /**
59115
59715
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
59116
59716
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -59474,6 +60074,14 @@ export class ArchValueListPickerSection extends ArchBaseValueWithAssignablePrope
59474
60074
  * reference, it needs to be in scope for this value.
59475
60075
  */
59476
60076
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
60077
+ /**
60078
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
60079
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
60080
+ * literal values, variable references, builder configuration, and no-value states. The source and
60081
+ * destination values must have the same data type.
60082
+ * @param sourceValue - the source value to copy from.
60083
+ */
60084
+ setFromValue(sourceValue: ArchBaseValue): void;
59477
60085
  /**
59478
60086
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
59479
60087
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -59829,6 +60437,14 @@ export class ArchValueListPickerSectionCollection extends ArchBaseValueCollectio
59829
60437
  * reference, it needs to be in scope for this value.
59830
60438
  */
59831
60439
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
60440
+ /**
60441
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
60442
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
60443
+ * literal values, variable references, builder configuration, and no-value states. The source and
60444
+ * destination values must have the same data type.
60445
+ * @param sourceValue - the source value to copy from.
60446
+ */
60447
+ setFromValue(sourceValue: ArchBaseValue): void;
59832
60448
  /**
59833
60449
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
59834
60450
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -60231,6 +60847,14 @@ export class ArchValuePhoneNumber extends ArchBaseNetworkValueSingleton {
60231
60847
  * reference, it needs to be in scope for this value.
60232
60848
  */
60233
60849
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
60850
+ /**
60851
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
60852
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
60853
+ * literal values, variable references, builder configuration, and no-value states. The source and
60854
+ * destination values must have the same data type.
60855
+ * @param sourceValue - the source value to copy from.
60856
+ */
60857
+ setFromValue(sourceValue: ArchBaseValue): void;
60234
60858
  /**
60235
60859
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
60236
60860
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -60586,6 +61210,14 @@ export class ArchValuePhoneNumberCollection extends ArchBaseValueCollectionBasic
60586
61210
  * reference, it needs to be in scope for this value.
60587
61211
  */
60588
61212
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
61213
+ /**
61214
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
61215
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
61216
+ * literal values, variable references, builder configuration, and no-value states. The source and
61217
+ * destination values must have the same data type.
61218
+ * @param sourceValue - the source value to copy from.
61219
+ */
61220
+ setFromValue(sourceValue: ArchBaseValue): void;
60589
61221
  /**
60590
61222
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
60591
61223
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -60961,6 +61593,14 @@ export class ArchValuePrompt extends ArchBaseValueSingleton {
60961
61593
  * reference, it needs to be in scope for this value.
60962
61594
  */
60963
61595
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
61596
+ /**
61597
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
61598
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
61599
+ * literal values, variable references, builder configuration, and no-value states. The source and
61600
+ * destination values must have the same data type.
61601
+ * @param sourceValue - the source value to copy from.
61602
+ */
61603
+ setFromValue(sourceValue: ArchBaseValue): void;
60964
61604
  /**
60965
61605
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
60966
61606
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -61319,6 +61959,14 @@ export class ArchValuePromptCollection extends ArchBaseValueCollection {
61319
61959
  * reference, it needs to be in scope for this value.
61320
61960
  */
61321
61961
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
61962
+ /**
61963
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
61964
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
61965
+ * literal values, variable references, builder configuration, and no-value states. The source and
61966
+ * destination values must have the same data type.
61967
+ * @param sourceValue - the source value to copy from.
61968
+ */
61969
+ setFromValue(sourceValue: ArchBaseValue): void;
61322
61970
  /**
61323
61971
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
61324
61972
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -61683,6 +62331,14 @@ export class ArchValueQueue extends ArchBaseNetworkValueSingleton {
61683
62331
  * reference, it needs to be in scope for this value.
61684
62332
  */
61685
62333
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
62334
+ /**
62335
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
62336
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
62337
+ * literal values, variable references, builder configuration, and no-value states. The source and
62338
+ * destination values must have the same data type.
62339
+ * @param sourceValue - the source value to copy from.
62340
+ */
62341
+ setFromValue(sourceValue: ArchBaseValue): void;
61686
62342
  /**
61687
62343
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
61688
62344
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -62061,6 +62717,14 @@ export class ArchValueQueueCollection extends ArchBaseNetworkValueCollection {
62061
62717
  * reference, it needs to be in scope for this value.
62062
62718
  */
62063
62719
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
62720
+ /**
62721
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
62722
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
62723
+ * literal values, variable references, builder configuration, and no-value states. The source and
62724
+ * destination values must have the same data type.
62725
+ * @param sourceValue - the source value to copy from.
62726
+ */
62727
+ setFromValue(sourceValue: ArchBaseValue): void;
62064
62728
  /**
62065
62729
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
62066
62730
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -62412,6 +63076,14 @@ export class ArchValueQuickReplies extends ArchBaseValueWithAssignableProperties
62412
63076
  * reference, it needs to be in scope for this value.
62413
63077
  */
62414
63078
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
63079
+ /**
63080
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
63081
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
63082
+ * literal values, variable references, builder configuration, and no-value states. The source and
63083
+ * destination values must have the same data type.
63084
+ * @param sourceValue - the source value to copy from.
63085
+ */
63086
+ setFromValue(sourceValue: ArchBaseValue): void;
62415
63087
  /**
62416
63088
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
62417
63089
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -62770,6 +63442,14 @@ export class ArchValueSchedule extends ArchBaseNetworkValueSingleton {
62770
63442
  * reference, it needs to be in scope for this value.
62771
63443
  */
62772
63444
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
63445
+ /**
63446
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
63447
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
63448
+ * literal values, variable references, builder configuration, and no-value states. The source and
63449
+ * destination values must have the same data type.
63450
+ * @param sourceValue - the source value to copy from.
63451
+ */
63452
+ setFromValue(sourceValue: ArchBaseValue): void;
62773
63453
  /**
62774
63454
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
62775
63455
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -63148,6 +63828,14 @@ export class ArchValueScheduleCollection extends ArchBaseNetworkValueCollection
63148
63828
  * reference, it needs to be in scope for this value.
63149
63829
  */
63150
63830
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
63831
+ /**
63832
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
63833
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
63834
+ * literal values, variable references, builder configuration, and no-value states. The source and
63835
+ * destination values must have the same data type.
63836
+ * @param sourceValue - the source value to copy from.
63837
+ */
63838
+ setFromValue(sourceValue: ArchBaseValue): void;
63151
63839
  /**
63152
63840
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
63153
63841
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -63507,6 +64195,14 @@ export class ArchValueScheduleGroup extends ArchBaseNetworkValueSingleton {
63507
64195
  * reference, it needs to be in scope for this value.
63508
64196
  */
63509
64197
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
64198
+ /**
64199
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
64200
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
64201
+ * literal values, variable references, builder configuration, and no-value states. The source and
64202
+ * destination values must have the same data type.
64203
+ * @param sourceValue - the source value to copy from.
64204
+ */
64205
+ setFromValue(sourceValue: ArchBaseValue): void;
63510
64206
  /**
63511
64207
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
63512
64208
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -63886,6 +64582,14 @@ export class ArchValueScheduleGroupCollection extends ArchBaseNetworkValueCollec
63886
64582
  * reference, it needs to be in scope for this value.
63887
64583
  */
63888
64584
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
64585
+ /**
64586
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
64587
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
64588
+ * literal values, variable references, builder configuration, and no-value states. The source and
64589
+ * destination values must have the same data type.
64590
+ * @param sourceValue - the source value to copy from.
64591
+ */
64592
+ setFromValue(sourceValue: ArchBaseValue): void;
63889
64593
  /**
63890
64594
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
63891
64595
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -64384,6 +65088,14 @@ export class ArchValueShippingOption extends ArchBaseValueWithAssignableProperti
64384
65088
  * reference, it needs to be in scope for this value.
64385
65089
  */
64386
65090
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
65091
+ /**
65092
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
65093
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
65094
+ * literal values, variable references, builder configuration, and no-value states. The source and
65095
+ * destination values must have the same data type.
65096
+ * @param sourceValue - the source value to copy from.
65097
+ */
65098
+ setFromValue(sourceValue: ArchBaseValue): void;
64387
65099
  /**
64388
65100
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
64389
65101
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -64726,6 +65438,14 @@ export class ArchValueShippingOptionCollection extends ArchBaseValueCollection {
64726
65438
  * reference, it needs to be in scope for this value.
64727
65439
  */
64728
65440
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
65441
+ /**
65442
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
65443
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
65444
+ * literal values, variable references, builder configuration, and no-value states. The source and
65445
+ * destination values must have the same data type.
65446
+ * @param sourceValue - the source value to copy from.
65447
+ */
65448
+ setFromValue(sourceValue: ArchBaseValue): void;
64729
65449
  /**
64730
65450
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
64731
65451
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -65091,6 +65811,14 @@ export class ArchValueSkill extends ArchBaseNetworkValueSingleton {
65091
65811
  * reference, it needs to be in scope for this value.
65092
65812
  */
65093
65813
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
65814
+ /**
65815
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
65816
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
65817
+ * literal values, variable references, builder configuration, and no-value states. The source and
65818
+ * destination values must have the same data type.
65819
+ * @param sourceValue - the source value to copy from.
65820
+ */
65821
+ setFromValue(sourceValue: ArchBaseValue): void;
65094
65822
  /**
65095
65823
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
65096
65824
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -65472,6 +66200,14 @@ export class ArchValueSkillCollection extends ArchBaseNetworkValueCollection {
65472
66200
  * reference, it needs to be in scope for this value.
65473
66201
  */
65474
66202
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
66203
+ /**
66204
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
66205
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
66206
+ * literal values, variable references, builder configuration, and no-value states. The source and
66207
+ * destination values must have the same data type.
66208
+ * @param sourceValue - the source value to copy from.
66209
+ */
66210
+ setFromValue(sourceValue: ArchBaseValue): void;
65475
66211
  /**
65476
66212
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
65477
66213
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -65824,6 +66560,14 @@ export class ArchValueString extends ArchBaseValueBasic {
65824
66560
  * reference, it needs to be in scope for this value.
65825
66561
  */
65826
66562
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
66563
+ /**
66564
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
66565
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
66566
+ * literal values, variable references, builder configuration, and no-value states. The source and
66567
+ * destination values must have the same data type.
66568
+ * @param sourceValue - the source value to copy from.
66569
+ */
66570
+ setFromValue(sourceValue: ArchBaseValue): void;
65827
66571
  /**
65828
66572
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
65829
66573
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -66178,6 +66922,14 @@ export class ArchValueStringCollection extends ArchBaseValueCollectionBasic {
66178
66922
  * reference, it needs to be in scope for this value.
66179
66923
  */
66180
66924
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
66925
+ /**
66926
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
66927
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
66928
+ * literal values, variable references, builder configuration, and no-value states. The source and
66929
+ * destination values must have the same data type.
66930
+ * @param sourceValue - the source value to copy from.
66931
+ */
66932
+ setFromValue(sourceValue: ArchBaseValue): void;
66181
66933
  /**
66182
66934
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
66183
66935
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -66528,6 +67280,14 @@ export class ArchValueSurveyAnswerOption extends ArchBaseValueBasic {
66528
67280
  * reference, it needs to be in scope for this value.
66529
67281
  */
66530
67282
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
67283
+ /**
67284
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
67285
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
67286
+ * literal values, variable references, builder configuration, and no-value states. The source and
67287
+ * destination values must have the same data type.
67288
+ * @param sourceValue - the source value to copy from.
67289
+ */
67290
+ setFromValue(sourceValue: ArchBaseValue): void;
66531
67291
  /**
66532
67292
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
66533
67293
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -66889,6 +67649,14 @@ export class ArchValueSurveyAnswerOptionCollection extends ArchBaseValueCollecti
66889
67649
  * reference, it needs to be in scope for this value.
66890
67650
  */
66891
67651
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
67652
+ /**
67653
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
67654
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
67655
+ * literal values, variable references, builder configuration, and no-value states. The source and
67656
+ * destination values must have the same data type.
67657
+ * @param sourceValue - the source value to copy from.
67658
+ */
67659
+ setFromValue(sourceValue: ArchBaseValue): void;
66892
67660
  /**
66893
67661
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
66894
67662
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -67228,6 +67996,14 @@ export class ArchValueSurveyForm extends ArchBaseValueBasic {
67228
67996
  * reference, it needs to be in scope for this value.
67229
67997
  */
67230
67998
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
67999
+ /**
68000
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
68001
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
68002
+ * literal values, variable references, builder configuration, and no-value states. The source and
68003
+ * destination values must have the same data type.
68004
+ * @param sourceValue - the source value to copy from.
68005
+ */
68006
+ setFromValue(sourceValue: ArchBaseValue): void;
67231
68007
  /**
67232
68008
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
67233
68009
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -67567,6 +68343,14 @@ export class ArchValueSurveyQuestion extends ArchBaseValueBasic {
67567
68343
  * reference, it needs to be in scope for this value.
67568
68344
  */
67569
68345
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
68346
+ /**
68347
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
68348
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
68349
+ * literal values, variable references, builder configuration, and no-value states. The source and
68350
+ * destination values must have the same data type.
68351
+ * @param sourceValue - the source value to copy from.
68352
+ */
68353
+ setFromValue(sourceValue: ArchBaseValue): void;
67570
68354
  /**
67571
68355
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
67572
68356
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -67921,6 +68705,14 @@ export class ArchValueSurveyQuestionCollection extends ArchBaseValueCollectionBa
67921
68705
  * reference, it needs to be in scope for this value.
67922
68706
  */
67923
68707
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
68708
+ /**
68709
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
68710
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
68711
+ * literal values, variable references, builder configuration, and no-value states. The source and
68712
+ * destination values must have the same data type.
68713
+ * @param sourceValue - the source value to copy from.
68714
+ */
68715
+ setFromValue(sourceValue: ArchBaseValue): void;
67924
68716
  /**
67925
68717
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
67926
68718
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -68260,6 +69052,14 @@ export class ArchValueSurveyQuestionGroup extends ArchBaseValueBasic {
68260
69052
  * reference, it needs to be in scope for this value.
68261
69053
  */
68262
69054
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
69055
+ /**
69056
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
69057
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
69058
+ * literal values, variable references, builder configuration, and no-value states. The source and
69059
+ * destination values must have the same data type.
69060
+ * @param sourceValue - the source value to copy from.
69061
+ */
69062
+ setFromValue(sourceValue: ArchBaseValue): void;
68263
69063
  /**
68264
69064
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
68265
69065
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -68614,6 +69414,14 @@ export class ArchValueSurveyQuestionGroupCollection extends ArchBaseValueCollect
68614
69414
  * reference, it needs to be in scope for this value.
68615
69415
  */
68616
69416
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
69417
+ /**
69418
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
69419
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
69420
+ * literal values, variable references, builder configuration, and no-value states. The source and
69421
+ * destination values must have the same data type.
69422
+ * @param sourceValue - the source value to copy from.
69423
+ */
69424
+ setFromValue(sourceValue: ArchBaseValue): void;
68617
69425
  /**
68618
69426
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
68619
69427
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -68966,6 +69774,14 @@ export class ArchValueTime extends ArchBaseValueBasic {
68966
69774
  * reference, it needs to be in scope for this value.
68967
69775
  */
68968
69776
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
69777
+ /**
69778
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
69779
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
69780
+ * literal values, variable references, builder configuration, and no-value states. The source and
69781
+ * destination values must have the same data type.
69782
+ * @param sourceValue - the source value to copy from.
69783
+ */
69784
+ setFromValue(sourceValue: ArchBaseValue): void;
68969
69785
  /**
68970
69786
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
68971
69787
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -69321,6 +70137,14 @@ export class ArchValueTimeCollection extends ArchBaseValueCollectionBasic {
69321
70137
  * reference, it needs to be in scope for this value.
69322
70138
  */
69323
70139
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
70140
+ /**
70141
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
70142
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
70143
+ * literal values, variable references, builder configuration, and no-value states. The source and
70144
+ * destination values must have the same data type.
70145
+ * @param sourceValue - the source value to copy from.
70146
+ */
70147
+ setFromValue(sourceValue: ArchBaseValue): void;
69324
70148
  /**
69325
70149
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
69326
70150
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -69700,6 +70524,14 @@ export class ArchValueTimePicker extends ArchBaseValueWithAssignableProperties {
69700
70524
  * reference, it needs to be in scope for this value.
69701
70525
  */
69702
70526
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
70527
+ /**
70528
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
70529
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
70530
+ * literal values, variable references, builder configuration, and no-value states. The source and
70531
+ * destination values must have the same data type.
70532
+ * @param sourceValue - the source value to copy from.
70533
+ */
70534
+ setFromValue(sourceValue: ArchBaseValue): void;
69703
70535
  /**
69704
70536
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
69705
70537
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -70061,6 +70893,14 @@ export class ArchValueTimeslot extends ArchBaseValueWithAssignableProperties {
70061
70893
  * reference, it needs to be in scope for this value.
70062
70894
  */
70063
70895
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
70896
+ /**
70897
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
70898
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
70899
+ * literal values, variable references, builder configuration, and no-value states. The source and
70900
+ * destination values must have the same data type.
70901
+ * @param sourceValue - the source value to copy from.
70902
+ */
70903
+ setFromValue(sourceValue: ArchBaseValue): void;
70064
70904
  /**
70065
70905
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
70066
70906
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -70416,6 +71256,14 @@ export class ArchValueTimeslotCollection extends ArchBaseValueCollectionBasic {
70416
71256
  * reference, it needs to be in scope for this value.
70417
71257
  */
70418
71258
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
71259
+ /**
71260
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
71261
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
71262
+ * literal values, variable references, builder configuration, and no-value states. The source and
71263
+ * destination values must have the same data type.
71264
+ * @param sourceValue - the source value to copy from.
71265
+ */
71266
+ setFromValue(sourceValue: ArchBaseValue): void;
70419
71267
  /**
70420
71268
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
70421
71269
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -70774,6 +71622,14 @@ export class ArchValueUser extends ArchBaseNetworkValueSingleton {
70774
71622
  * reference, it needs to be in scope for this value.
70775
71623
  */
70776
71624
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
71625
+ /**
71626
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
71627
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
71628
+ * literal values, variable references, builder configuration, and no-value states. The source and
71629
+ * destination values must have the same data type.
71630
+ * @param sourceValue - the source value to copy from.
71631
+ */
71632
+ setFromValue(sourceValue: ArchBaseValue): void;
70777
71633
  /**
70778
71634
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
70779
71635
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -71152,6 +72008,14 @@ export class ArchValueUserCollection extends ArchBaseNetworkValueCollection {
71152
72008
  * reference, it needs to be in scope for this value.
71153
72009
  */
71154
72010
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
72011
+ /**
72012
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
72013
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
72014
+ * literal values, variable references, builder configuration, and no-value states. The source and
72015
+ * destination values must have the same data type.
72016
+ * @param sourceValue - the source value to copy from.
72017
+ */
72018
+ setFromValue(sourceValue: ArchBaseValue): void;
71155
72019
  /**
71156
72020
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
71157
72021
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -71511,6 +72375,14 @@ export class ArchValueUtilizationLabel extends ArchBaseNetworkValueSingleton {
71511
72375
  * reference, it needs to be in scope for this value.
71512
72376
  */
71513
72377
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
72378
+ /**
72379
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
72380
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
72381
+ * literal values, variable references, builder configuration, and no-value states. The source and
72382
+ * destination values must have the same data type.
72383
+ * @param sourceValue - the source value to copy from.
72384
+ */
72385
+ setFromValue(sourceValue: ArchBaseValue): void;
71514
72386
  /**
71515
72387
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
71516
72388
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -71889,6 +72761,14 @@ export class ArchValueUtilizationLabelCollection extends ArchBaseValueCollection
71889
72761
  * reference, it needs to be in scope for this value.
71890
72762
  */
71891
72763
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
72764
+ /**
72765
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
72766
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
72767
+ * literal values, variable references, builder configuration, and no-value states. The source and
72768
+ * destination values must have the same data type.
72769
+ * @param sourceValue - the source value to copy from.
72770
+ */
72771
+ setFromValue(sourceValue: ArchBaseValue): void;
71892
72772
  /**
71893
72773
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
71894
72774
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -72228,6 +73108,14 @@ export class ArchValueVoiceSnippet extends ArchBaseValueSingleton {
72228
73108
  * reference, it needs to be in scope for this value.
72229
73109
  */
72230
73110
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
73111
+ /**
73112
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
73113
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
73114
+ * literal values, variable references, builder configuration, and no-value states. The source and
73115
+ * destination values must have the same data type.
73116
+ * @param sourceValue - the source value to copy from.
73117
+ */
73118
+ setFromValue(sourceValue: ArchBaseValue): void;
72231
73119
  /**
72232
73120
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
72233
73121
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -72567,6 +73455,14 @@ export class ArchValueVoicemailSnippet extends ArchBaseValueSingleton {
72567
73455
  * reference, it needs to be in scope for this value.
72568
73456
  */
72569
73457
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
73458
+ /**
73459
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
73460
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
73461
+ * literal values, variable references, builder configuration, and no-value states. The source and
73462
+ * destination values must have the same data type.
73463
+ * @param sourceValue - the source value to copy from.
73464
+ */
73465
+ setFromValue(sourceValue: ArchBaseValue): void;
72570
73466
  /**
72571
73467
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
72572
73468
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -72906,6 +73802,14 @@ export class ArchValueWorkbin extends ArchBaseValueSingleton {
72906
73802
  * reference, it needs to be in scope for this value.
72907
73803
  */
72908
73804
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
73805
+ /**
73806
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
73807
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
73808
+ * literal values, variable references, builder configuration, and no-value states. The source and
73809
+ * destination values must have the same data type.
73810
+ * @param sourceValue - the source value to copy from.
73811
+ */
73812
+ setFromValue(sourceValue: ArchBaseValue): void;
72909
73813
  /**
72910
73814
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
72911
73815
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -73248,6 +74152,14 @@ export class ArchValueWorkbinCollection extends ArchBaseValueCollection {
73248
74152
  * reference, it needs to be in scope for this value.
73249
74153
  */
73250
74154
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
74155
+ /**
74156
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
74157
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
74158
+ * literal values, variable references, builder configuration, and no-value states. The source and
74159
+ * destination values must have the same data type.
74160
+ * @param sourceValue - the source value to copy from.
74161
+ */
74162
+ setFromValue(sourceValue: ArchBaseValue): void;
73251
74163
  /**
73252
74164
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
73253
74165
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -73593,6 +74505,14 @@ export class ArchValueWorkitem extends ArchBaseValueSingleton {
73593
74505
  * reference, it needs to be in scope for this value.
73594
74506
  */
73595
74507
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
74508
+ /**
74509
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
74510
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
74511
+ * literal values, variable references, builder configuration, and no-value states. The source and
74512
+ * destination values must have the same data type.
74513
+ * @param sourceValue - the source value to copy from.
74514
+ */
74515
+ setFromValue(sourceValue: ArchBaseValue): void;
73596
74516
  /**
73597
74517
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
73598
74518
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -73943,6 +74863,14 @@ export class ArchValueWorktypeStatus extends ArchBaseValueSingleton {
73943
74863
  * reference, it needs to be in scope for this value.
73944
74864
  */
73945
74865
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
74866
+ /**
74867
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
74868
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
74869
+ * literal values, variable references, builder configuration, and no-value states. The source and
74870
+ * destination values must have the same data type.
74871
+ * @param sourceValue - the source value to copy from.
74872
+ */
74873
+ setFromValue(sourceValue: ArchBaseValue): void;
73946
74874
  /**
73947
74875
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
73948
74876
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -74285,6 +75213,14 @@ export class ArchValueWorktypeStatusCollection extends ArchBaseValueCollection {
74285
75213
  * reference, it needs to be in scope for this value.
74286
75214
  */
74287
75215
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
75216
+ /**
75217
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
75218
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
75219
+ * literal values, variable references, builder configuration, and no-value states. The source and
75220
+ * destination values must have the same data type.
75221
+ * @param sourceValue - the source value to copy from.
75222
+ */
75223
+ setFromValue(sourceValue: ArchBaseValue): void;
74288
75224
  /**
74289
75225
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
74290
75226
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -74650,6 +75586,14 @@ export class ArchValueWrapupCode extends ArchBaseNetworkValueSingleton {
74650
75586
  * reference, it needs to be in scope for this value.
74651
75587
  */
74652
75588
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
75589
+ /**
75590
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
75591
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
75592
+ * literal values, variable references, builder configuration, and no-value states. The source and
75593
+ * destination values must have the same data type.
75594
+ * @param sourceValue - the source value to copy from.
75595
+ */
75596
+ setFromValue(sourceValue: ArchBaseValue): void;
74653
75597
  /**
74654
75598
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
74655
75599
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're
@@ -75028,6 +75972,14 @@ export class ArchValueWrapupCodeCollection extends ArchBaseNetworkValueCollectio
75028
75972
  * reference, it needs to be in scope for this value.
75029
75973
  */
75030
75974
  setExpressionFromVariable(variableToAssign: string | ArchBaseVariable): void;
75975
+ /**
75976
+ * Sets this value to match the given source value, copying its mode and configuration exactly. This is
75977
+ * useful when you want to duplicate the full state of one value onto another, including expression mode,
75978
+ * literal values, variable references, builder configuration, and no-value states. The source and
75979
+ * destination values must have the same data type.
75980
+ * @param sourceValue - the source value to copy from.
75981
+ */
75982
+ setFromValue(sourceValue: ArchBaseValue): void;
75031
75983
  /**
75032
75984
  * This method sets the value to no value. Note that this is different from setting NOT_SET or something like a
75033
75985
  * blank string. Setting a value to contain no value is something which is rather internal to Architect but we're