protobuf-platform 1.2.608 → 1.2.609
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/package.json +1 -1
- package/user/user.proto +15 -0
- package/user/user_pb.js +758 -35
package/package.json
CHANGED
package/user/user.proto
CHANGED
|
@@ -2320,6 +2320,11 @@ message ResponsibleGamingDepositLimitDecisionDetail {
|
|
|
2320
2320
|
optional int64 requested_amount_minor = 6;
|
|
2321
2321
|
optional string current_window_start = 7;
|
|
2322
2322
|
optional string current_window_end = 8;
|
|
2323
|
+
optional ResponsibleGamingRecurringPeriod recurring_period = 9;
|
|
2324
|
+
optional int64 limit_amount_minor = 10;
|
|
2325
|
+
optional string currency = 11;
|
|
2326
|
+
optional int32 currency_scale = 12;
|
|
2327
|
+
optional string policy_id = 13;
|
|
2323
2328
|
}
|
|
2324
2329
|
message ResponsibleGamingLossLimitDecisionDetail {
|
|
2325
2330
|
bool configured = 1;
|
|
@@ -2334,6 +2339,11 @@ message ResponsibleGamingLossLimitDecisionDetail {
|
|
|
2334
2339
|
optional int64 requested_stake_minor = 10;
|
|
2335
2340
|
optional string current_window_start = 11;
|
|
2336
2341
|
optional string current_window_end = 12;
|
|
2342
|
+
optional ResponsibleGamingRecurringPeriod recurring_period = 13;
|
|
2343
|
+
optional int64 limit_amount_minor = 14;
|
|
2344
|
+
optional string currency = 15;
|
|
2345
|
+
optional int32 currency_scale = 16;
|
|
2346
|
+
optional string policy_id = 17;
|
|
2337
2347
|
}
|
|
2338
2348
|
message ResponsibleGamingTimeLimitDecisionDetail {
|
|
2339
2349
|
bool configured = 1;
|
|
@@ -2346,6 +2356,9 @@ message ResponsibleGamingTimeLimitDecisionDetail {
|
|
|
2346
2356
|
optional string last_activity_at = 8;
|
|
2347
2357
|
optional string current_window_start = 9;
|
|
2348
2358
|
optional string current_window_end = 10;
|
|
2359
|
+
optional ResponsibleGamingRecurringPeriod recurring_period = 11;
|
|
2360
|
+
optional int64 limit_seconds = 12;
|
|
2361
|
+
optional string policy_id = 13;
|
|
2349
2362
|
}
|
|
2350
2363
|
message ResponsibleGamingCoolingOffDecisionDetail {
|
|
2351
2364
|
bool active = 1;
|
|
@@ -2497,4 +2510,6 @@ message UpdateResponsibleGamingTimeUsageResponse {
|
|
|
2497
2510
|
optional int64 remaining_seconds = 6;
|
|
2498
2511
|
optional string last_activity_at = 7;
|
|
2499
2512
|
bool limit_reached = 8;
|
|
2513
|
+
optional string reason_key = 9;
|
|
2514
|
+
optional ResponsibleGamingDecisionDetails decision_details = 10;
|
|
2500
2515
|
}
|
package/user/user_pb.js
CHANGED
|
@@ -93086,7 +93086,12 @@ proto.user.ResponsibleGamingDepositLimitDecisionDetail.toObject = function(inclu
|
|
|
93086
93086
|
remainingMinor: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
93087
93087
|
requestedAmountMinor: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
93088
93088
|
currentWindowStart: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
93089
|
-
currentWindowEnd: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
93089
|
+
currentWindowEnd: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
93090
|
+
recurringPeriod: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
93091
|
+
limitAmountMinor: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
|
93092
|
+
currency: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
93093
|
+
currencyScale: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
93094
|
+
policyId: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
93090
93095
|
};
|
|
93091
93096
|
|
|
93092
93097
|
if (includeInstance) {
|
|
@@ -93155,6 +93160,26 @@ proto.user.ResponsibleGamingDepositLimitDecisionDetail.deserializeBinaryFromRead
|
|
|
93155
93160
|
var value = /** @type {string} */ (reader.readString());
|
|
93156
93161
|
msg.setCurrentWindowEnd(value);
|
|
93157
93162
|
break;
|
|
93163
|
+
case 9:
|
|
93164
|
+
var value = /** @type {!proto.user.ResponsibleGamingRecurringPeriod} */ (reader.readEnum());
|
|
93165
|
+
msg.setRecurringPeriod(value);
|
|
93166
|
+
break;
|
|
93167
|
+
case 10:
|
|
93168
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
93169
|
+
msg.setLimitAmountMinor(value);
|
|
93170
|
+
break;
|
|
93171
|
+
case 11:
|
|
93172
|
+
var value = /** @type {string} */ (reader.readString());
|
|
93173
|
+
msg.setCurrency(value);
|
|
93174
|
+
break;
|
|
93175
|
+
case 12:
|
|
93176
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
93177
|
+
msg.setCurrencyScale(value);
|
|
93178
|
+
break;
|
|
93179
|
+
case 13:
|
|
93180
|
+
var value = /** @type {string} */ (reader.readString());
|
|
93181
|
+
msg.setPolicyId(value);
|
|
93182
|
+
break;
|
|
93158
93183
|
default:
|
|
93159
93184
|
reader.skipField();
|
|
93160
93185
|
break;
|
|
@@ -93240,6 +93265,41 @@ proto.user.ResponsibleGamingDepositLimitDecisionDetail.serializeBinaryToWriter =
|
|
|
93240
93265
|
f
|
|
93241
93266
|
);
|
|
93242
93267
|
}
|
|
93268
|
+
f = /** @type {!proto.user.ResponsibleGamingRecurringPeriod} */ (jspb.Message.getField(message, 9));
|
|
93269
|
+
if (f != null) {
|
|
93270
|
+
writer.writeEnum(
|
|
93271
|
+
9,
|
|
93272
|
+
f
|
|
93273
|
+
);
|
|
93274
|
+
}
|
|
93275
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 10));
|
|
93276
|
+
if (f != null) {
|
|
93277
|
+
writer.writeInt64(
|
|
93278
|
+
10,
|
|
93279
|
+
f
|
|
93280
|
+
);
|
|
93281
|
+
}
|
|
93282
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 11));
|
|
93283
|
+
if (f != null) {
|
|
93284
|
+
writer.writeString(
|
|
93285
|
+
11,
|
|
93286
|
+
f
|
|
93287
|
+
);
|
|
93288
|
+
}
|
|
93289
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 12));
|
|
93290
|
+
if (f != null) {
|
|
93291
|
+
writer.writeInt32(
|
|
93292
|
+
12,
|
|
93293
|
+
f
|
|
93294
|
+
);
|
|
93295
|
+
}
|
|
93296
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
|
93297
|
+
if (f != null) {
|
|
93298
|
+
writer.writeString(
|
|
93299
|
+
13,
|
|
93300
|
+
f
|
|
93301
|
+
);
|
|
93302
|
+
}
|
|
93243
93303
|
};
|
|
93244
93304
|
|
|
93245
93305
|
|
|
@@ -93495,6 +93555,186 @@ proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.hasCurrentWindo
|
|
|
93495
93555
|
};
|
|
93496
93556
|
|
|
93497
93557
|
|
|
93558
|
+
/**
|
|
93559
|
+
* optional ResponsibleGamingRecurringPeriod recurring_period = 9;
|
|
93560
|
+
* @return {!proto.user.ResponsibleGamingRecurringPeriod}
|
|
93561
|
+
*/
|
|
93562
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.getRecurringPeriod = function() {
|
|
93563
|
+
return /** @type {!proto.user.ResponsibleGamingRecurringPeriod} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
|
|
93564
|
+
};
|
|
93565
|
+
|
|
93566
|
+
|
|
93567
|
+
/**
|
|
93568
|
+
* @param {!proto.user.ResponsibleGamingRecurringPeriod} value
|
|
93569
|
+
* @return {!proto.user.ResponsibleGamingDepositLimitDecisionDetail} returns this
|
|
93570
|
+
*/
|
|
93571
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.setRecurringPeriod = function(value) {
|
|
93572
|
+
return jspb.Message.setField(this, 9, value);
|
|
93573
|
+
};
|
|
93574
|
+
|
|
93575
|
+
|
|
93576
|
+
/**
|
|
93577
|
+
* Clears the field making it undefined.
|
|
93578
|
+
* @return {!proto.user.ResponsibleGamingDepositLimitDecisionDetail} returns this
|
|
93579
|
+
*/
|
|
93580
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.clearRecurringPeriod = function() {
|
|
93581
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
93582
|
+
};
|
|
93583
|
+
|
|
93584
|
+
|
|
93585
|
+
/**
|
|
93586
|
+
* Returns whether this field is set.
|
|
93587
|
+
* @return {boolean}
|
|
93588
|
+
*/
|
|
93589
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.hasRecurringPeriod = function() {
|
|
93590
|
+
return jspb.Message.getField(this, 9) != null;
|
|
93591
|
+
};
|
|
93592
|
+
|
|
93593
|
+
|
|
93594
|
+
/**
|
|
93595
|
+
* optional int64 limit_amount_minor = 10;
|
|
93596
|
+
* @return {number}
|
|
93597
|
+
*/
|
|
93598
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.getLimitAmountMinor = function() {
|
|
93599
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 10, 0));
|
|
93600
|
+
};
|
|
93601
|
+
|
|
93602
|
+
|
|
93603
|
+
/**
|
|
93604
|
+
* @param {number} value
|
|
93605
|
+
* @return {!proto.user.ResponsibleGamingDepositLimitDecisionDetail} returns this
|
|
93606
|
+
*/
|
|
93607
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.setLimitAmountMinor = function(value) {
|
|
93608
|
+
return jspb.Message.setField(this, 10, value);
|
|
93609
|
+
};
|
|
93610
|
+
|
|
93611
|
+
|
|
93612
|
+
/**
|
|
93613
|
+
* Clears the field making it undefined.
|
|
93614
|
+
* @return {!proto.user.ResponsibleGamingDepositLimitDecisionDetail} returns this
|
|
93615
|
+
*/
|
|
93616
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.clearLimitAmountMinor = function() {
|
|
93617
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
93618
|
+
};
|
|
93619
|
+
|
|
93620
|
+
|
|
93621
|
+
/**
|
|
93622
|
+
* Returns whether this field is set.
|
|
93623
|
+
* @return {boolean}
|
|
93624
|
+
*/
|
|
93625
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.hasLimitAmountMinor = function() {
|
|
93626
|
+
return jspb.Message.getField(this, 10) != null;
|
|
93627
|
+
};
|
|
93628
|
+
|
|
93629
|
+
|
|
93630
|
+
/**
|
|
93631
|
+
* optional string currency = 11;
|
|
93632
|
+
* @return {string}
|
|
93633
|
+
*/
|
|
93634
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.getCurrency = function() {
|
|
93635
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
93636
|
+
};
|
|
93637
|
+
|
|
93638
|
+
|
|
93639
|
+
/**
|
|
93640
|
+
* @param {string} value
|
|
93641
|
+
* @return {!proto.user.ResponsibleGamingDepositLimitDecisionDetail} returns this
|
|
93642
|
+
*/
|
|
93643
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.setCurrency = function(value) {
|
|
93644
|
+
return jspb.Message.setField(this, 11, value);
|
|
93645
|
+
};
|
|
93646
|
+
|
|
93647
|
+
|
|
93648
|
+
/**
|
|
93649
|
+
* Clears the field making it undefined.
|
|
93650
|
+
* @return {!proto.user.ResponsibleGamingDepositLimitDecisionDetail} returns this
|
|
93651
|
+
*/
|
|
93652
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.clearCurrency = function() {
|
|
93653
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
93654
|
+
};
|
|
93655
|
+
|
|
93656
|
+
|
|
93657
|
+
/**
|
|
93658
|
+
* Returns whether this field is set.
|
|
93659
|
+
* @return {boolean}
|
|
93660
|
+
*/
|
|
93661
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.hasCurrency = function() {
|
|
93662
|
+
return jspb.Message.getField(this, 11) != null;
|
|
93663
|
+
};
|
|
93664
|
+
|
|
93665
|
+
|
|
93666
|
+
/**
|
|
93667
|
+
* optional int32 currency_scale = 12;
|
|
93668
|
+
* @return {number}
|
|
93669
|
+
*/
|
|
93670
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.getCurrencyScale = function() {
|
|
93671
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
|
93672
|
+
};
|
|
93673
|
+
|
|
93674
|
+
|
|
93675
|
+
/**
|
|
93676
|
+
* @param {number} value
|
|
93677
|
+
* @return {!proto.user.ResponsibleGamingDepositLimitDecisionDetail} returns this
|
|
93678
|
+
*/
|
|
93679
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.setCurrencyScale = function(value) {
|
|
93680
|
+
return jspb.Message.setField(this, 12, value);
|
|
93681
|
+
};
|
|
93682
|
+
|
|
93683
|
+
|
|
93684
|
+
/**
|
|
93685
|
+
* Clears the field making it undefined.
|
|
93686
|
+
* @return {!proto.user.ResponsibleGamingDepositLimitDecisionDetail} returns this
|
|
93687
|
+
*/
|
|
93688
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.clearCurrencyScale = function() {
|
|
93689
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
93690
|
+
};
|
|
93691
|
+
|
|
93692
|
+
|
|
93693
|
+
/**
|
|
93694
|
+
* Returns whether this field is set.
|
|
93695
|
+
* @return {boolean}
|
|
93696
|
+
*/
|
|
93697
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.hasCurrencyScale = function() {
|
|
93698
|
+
return jspb.Message.getField(this, 12) != null;
|
|
93699
|
+
};
|
|
93700
|
+
|
|
93701
|
+
|
|
93702
|
+
/**
|
|
93703
|
+
* optional string policy_id = 13;
|
|
93704
|
+
* @return {string}
|
|
93705
|
+
*/
|
|
93706
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.getPolicyId = function() {
|
|
93707
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
93708
|
+
};
|
|
93709
|
+
|
|
93710
|
+
|
|
93711
|
+
/**
|
|
93712
|
+
* @param {string} value
|
|
93713
|
+
* @return {!proto.user.ResponsibleGamingDepositLimitDecisionDetail} returns this
|
|
93714
|
+
*/
|
|
93715
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.setPolicyId = function(value) {
|
|
93716
|
+
return jspb.Message.setField(this, 13, value);
|
|
93717
|
+
};
|
|
93718
|
+
|
|
93719
|
+
|
|
93720
|
+
/**
|
|
93721
|
+
* Clears the field making it undefined.
|
|
93722
|
+
* @return {!proto.user.ResponsibleGamingDepositLimitDecisionDetail} returns this
|
|
93723
|
+
*/
|
|
93724
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.clearPolicyId = function() {
|
|
93725
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
93726
|
+
};
|
|
93727
|
+
|
|
93728
|
+
|
|
93729
|
+
/**
|
|
93730
|
+
* Returns whether this field is set.
|
|
93731
|
+
* @return {boolean}
|
|
93732
|
+
*/
|
|
93733
|
+
proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.hasPolicyId = function() {
|
|
93734
|
+
return jspb.Message.getField(this, 13) != null;
|
|
93735
|
+
};
|
|
93736
|
+
|
|
93737
|
+
|
|
93498
93738
|
|
|
93499
93739
|
|
|
93500
93740
|
|
|
@@ -93538,7 +93778,12 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.toObject = function(includeI
|
|
|
93538
93778
|
remainingStakeMinor: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
93539
93779
|
requestedStakeMinor: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
|
93540
93780
|
currentWindowStart: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
93541
|
-
currentWindowEnd: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
93781
|
+
currentWindowEnd: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
93782
|
+
recurringPeriod: jspb.Message.getFieldWithDefault(msg, 13, 0),
|
|
93783
|
+
limitAmountMinor: jspb.Message.getFieldWithDefault(msg, 14, 0),
|
|
93784
|
+
currency: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
93785
|
+
currencyScale: jspb.Message.getFieldWithDefault(msg, 16, 0),
|
|
93786
|
+
policyId: jspb.Message.getFieldWithDefault(msg, 17, "")
|
|
93542
93787
|
};
|
|
93543
93788
|
|
|
93544
93789
|
if (includeInstance) {
|
|
@@ -93623,6 +93868,26 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.deserializeBinaryFromReader
|
|
|
93623
93868
|
var value = /** @type {string} */ (reader.readString());
|
|
93624
93869
|
msg.setCurrentWindowEnd(value);
|
|
93625
93870
|
break;
|
|
93871
|
+
case 13:
|
|
93872
|
+
var value = /** @type {!proto.user.ResponsibleGamingRecurringPeriod} */ (reader.readEnum());
|
|
93873
|
+
msg.setRecurringPeriod(value);
|
|
93874
|
+
break;
|
|
93875
|
+
case 14:
|
|
93876
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
93877
|
+
msg.setLimitAmountMinor(value);
|
|
93878
|
+
break;
|
|
93879
|
+
case 15:
|
|
93880
|
+
var value = /** @type {string} */ (reader.readString());
|
|
93881
|
+
msg.setCurrency(value);
|
|
93882
|
+
break;
|
|
93883
|
+
case 16:
|
|
93884
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
93885
|
+
msg.setCurrencyScale(value);
|
|
93886
|
+
break;
|
|
93887
|
+
case 17:
|
|
93888
|
+
var value = /** @type {string} */ (reader.readString());
|
|
93889
|
+
msg.setPolicyId(value);
|
|
93890
|
+
break;
|
|
93626
93891
|
default:
|
|
93627
93892
|
reader.skipField();
|
|
93628
93893
|
break;
|
|
@@ -93736,6 +94001,41 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.serializeBinaryToWriter = fu
|
|
|
93736
94001
|
f
|
|
93737
94002
|
);
|
|
93738
94003
|
}
|
|
94004
|
+
f = /** @type {!proto.user.ResponsibleGamingRecurringPeriod} */ (jspb.Message.getField(message, 13));
|
|
94005
|
+
if (f != null) {
|
|
94006
|
+
writer.writeEnum(
|
|
94007
|
+
13,
|
|
94008
|
+
f
|
|
94009
|
+
);
|
|
94010
|
+
}
|
|
94011
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 14));
|
|
94012
|
+
if (f != null) {
|
|
94013
|
+
writer.writeInt64(
|
|
94014
|
+
14,
|
|
94015
|
+
f
|
|
94016
|
+
);
|
|
94017
|
+
}
|
|
94018
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 15));
|
|
94019
|
+
if (f != null) {
|
|
94020
|
+
writer.writeString(
|
|
94021
|
+
15,
|
|
94022
|
+
f
|
|
94023
|
+
);
|
|
94024
|
+
}
|
|
94025
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 16));
|
|
94026
|
+
if (f != null) {
|
|
94027
|
+
writer.writeInt32(
|
|
94028
|
+
16,
|
|
94029
|
+
f
|
|
94030
|
+
);
|
|
94031
|
+
}
|
|
94032
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 17));
|
|
94033
|
+
if (f != null) {
|
|
94034
|
+
writer.writeString(
|
|
94035
|
+
17,
|
|
94036
|
+
f
|
|
94037
|
+
);
|
|
94038
|
+
}
|
|
93739
94039
|
};
|
|
93740
94040
|
|
|
93741
94041
|
|
|
@@ -94028,20 +94328,200 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasRemainingStakeM
|
|
|
94028
94328
|
|
|
94029
94329
|
|
|
94030
94330
|
/**
|
|
94031
|
-
* optional int64 requested_stake_minor = 10;
|
|
94032
|
-
* @return {number}
|
|
94331
|
+
* optional int64 requested_stake_minor = 10;
|
|
94332
|
+
* @return {number}
|
|
94333
|
+
*/
|
|
94334
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getRequestedStakeMinor = function() {
|
|
94335
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 10, 0));
|
|
94336
|
+
};
|
|
94337
|
+
|
|
94338
|
+
|
|
94339
|
+
/**
|
|
94340
|
+
* @param {number} value
|
|
94341
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94342
|
+
*/
|
|
94343
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setRequestedStakeMinor = function(value) {
|
|
94344
|
+
return jspb.Message.setField(this, 10, value);
|
|
94345
|
+
};
|
|
94346
|
+
|
|
94347
|
+
|
|
94348
|
+
/**
|
|
94349
|
+
* Clears the field making it undefined.
|
|
94350
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94351
|
+
*/
|
|
94352
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearRequestedStakeMinor = function() {
|
|
94353
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
94354
|
+
};
|
|
94355
|
+
|
|
94356
|
+
|
|
94357
|
+
/**
|
|
94358
|
+
* Returns whether this field is set.
|
|
94359
|
+
* @return {boolean}
|
|
94360
|
+
*/
|
|
94361
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasRequestedStakeMinor = function() {
|
|
94362
|
+
return jspb.Message.getField(this, 10) != null;
|
|
94363
|
+
};
|
|
94364
|
+
|
|
94365
|
+
|
|
94366
|
+
/**
|
|
94367
|
+
* optional string current_window_start = 11;
|
|
94368
|
+
* @return {string}
|
|
94369
|
+
*/
|
|
94370
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getCurrentWindowStart = function() {
|
|
94371
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
94372
|
+
};
|
|
94373
|
+
|
|
94374
|
+
|
|
94375
|
+
/**
|
|
94376
|
+
* @param {string} value
|
|
94377
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94378
|
+
*/
|
|
94379
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setCurrentWindowStart = function(value) {
|
|
94380
|
+
return jspb.Message.setField(this, 11, value);
|
|
94381
|
+
};
|
|
94382
|
+
|
|
94383
|
+
|
|
94384
|
+
/**
|
|
94385
|
+
* Clears the field making it undefined.
|
|
94386
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94387
|
+
*/
|
|
94388
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearCurrentWindowStart = function() {
|
|
94389
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
94390
|
+
};
|
|
94391
|
+
|
|
94392
|
+
|
|
94393
|
+
/**
|
|
94394
|
+
* Returns whether this field is set.
|
|
94395
|
+
* @return {boolean}
|
|
94396
|
+
*/
|
|
94397
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasCurrentWindowStart = function() {
|
|
94398
|
+
return jspb.Message.getField(this, 11) != null;
|
|
94399
|
+
};
|
|
94400
|
+
|
|
94401
|
+
|
|
94402
|
+
/**
|
|
94403
|
+
* optional string current_window_end = 12;
|
|
94404
|
+
* @return {string}
|
|
94405
|
+
*/
|
|
94406
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getCurrentWindowEnd = function() {
|
|
94407
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
94408
|
+
};
|
|
94409
|
+
|
|
94410
|
+
|
|
94411
|
+
/**
|
|
94412
|
+
* @param {string} value
|
|
94413
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94414
|
+
*/
|
|
94415
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setCurrentWindowEnd = function(value) {
|
|
94416
|
+
return jspb.Message.setField(this, 12, value);
|
|
94417
|
+
};
|
|
94418
|
+
|
|
94419
|
+
|
|
94420
|
+
/**
|
|
94421
|
+
* Clears the field making it undefined.
|
|
94422
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94423
|
+
*/
|
|
94424
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearCurrentWindowEnd = function() {
|
|
94425
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
94426
|
+
};
|
|
94427
|
+
|
|
94428
|
+
|
|
94429
|
+
/**
|
|
94430
|
+
* Returns whether this field is set.
|
|
94431
|
+
* @return {boolean}
|
|
94432
|
+
*/
|
|
94433
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasCurrentWindowEnd = function() {
|
|
94434
|
+
return jspb.Message.getField(this, 12) != null;
|
|
94435
|
+
};
|
|
94436
|
+
|
|
94437
|
+
|
|
94438
|
+
/**
|
|
94439
|
+
* optional ResponsibleGamingRecurringPeriod recurring_period = 13;
|
|
94440
|
+
* @return {!proto.user.ResponsibleGamingRecurringPeriod}
|
|
94441
|
+
*/
|
|
94442
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getRecurringPeriod = function() {
|
|
94443
|
+
return /** @type {!proto.user.ResponsibleGamingRecurringPeriod} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
|
|
94444
|
+
};
|
|
94445
|
+
|
|
94446
|
+
|
|
94447
|
+
/**
|
|
94448
|
+
* @param {!proto.user.ResponsibleGamingRecurringPeriod} value
|
|
94449
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94450
|
+
*/
|
|
94451
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setRecurringPeriod = function(value) {
|
|
94452
|
+
return jspb.Message.setField(this, 13, value);
|
|
94453
|
+
};
|
|
94454
|
+
|
|
94455
|
+
|
|
94456
|
+
/**
|
|
94457
|
+
* Clears the field making it undefined.
|
|
94458
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94459
|
+
*/
|
|
94460
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearRecurringPeriod = function() {
|
|
94461
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
94462
|
+
};
|
|
94463
|
+
|
|
94464
|
+
|
|
94465
|
+
/**
|
|
94466
|
+
* Returns whether this field is set.
|
|
94467
|
+
* @return {boolean}
|
|
94468
|
+
*/
|
|
94469
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasRecurringPeriod = function() {
|
|
94470
|
+
return jspb.Message.getField(this, 13) != null;
|
|
94471
|
+
};
|
|
94472
|
+
|
|
94473
|
+
|
|
94474
|
+
/**
|
|
94475
|
+
* optional int64 limit_amount_minor = 14;
|
|
94476
|
+
* @return {number}
|
|
94477
|
+
*/
|
|
94478
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getLimitAmountMinor = function() {
|
|
94479
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 14, 0));
|
|
94480
|
+
};
|
|
94481
|
+
|
|
94482
|
+
|
|
94483
|
+
/**
|
|
94484
|
+
* @param {number} value
|
|
94485
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94486
|
+
*/
|
|
94487
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setLimitAmountMinor = function(value) {
|
|
94488
|
+
return jspb.Message.setField(this, 14, value);
|
|
94489
|
+
};
|
|
94490
|
+
|
|
94491
|
+
|
|
94492
|
+
/**
|
|
94493
|
+
* Clears the field making it undefined.
|
|
94494
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94495
|
+
*/
|
|
94496
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearLimitAmountMinor = function() {
|
|
94497
|
+
return jspb.Message.setField(this, 14, undefined);
|
|
94498
|
+
};
|
|
94499
|
+
|
|
94500
|
+
|
|
94501
|
+
/**
|
|
94502
|
+
* Returns whether this field is set.
|
|
94503
|
+
* @return {boolean}
|
|
94504
|
+
*/
|
|
94505
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasLimitAmountMinor = function() {
|
|
94506
|
+
return jspb.Message.getField(this, 14) != null;
|
|
94507
|
+
};
|
|
94508
|
+
|
|
94509
|
+
|
|
94510
|
+
/**
|
|
94511
|
+
* optional string currency = 15;
|
|
94512
|
+
* @return {string}
|
|
94033
94513
|
*/
|
|
94034
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94035
|
-
return /** @type {
|
|
94514
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getCurrency = function() {
|
|
94515
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
94036
94516
|
};
|
|
94037
94517
|
|
|
94038
94518
|
|
|
94039
94519
|
/**
|
|
94040
|
-
* @param {
|
|
94520
|
+
* @param {string} value
|
|
94041
94521
|
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94042
94522
|
*/
|
|
94043
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94044
|
-
return jspb.Message.setField(this,
|
|
94523
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setCurrency = function(value) {
|
|
94524
|
+
return jspb.Message.setField(this, 15, value);
|
|
94045
94525
|
};
|
|
94046
94526
|
|
|
94047
94527
|
|
|
@@ -94049,8 +94529,8 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setRequestedStakeM
|
|
|
94049
94529
|
* Clears the field making it undefined.
|
|
94050
94530
|
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94051
94531
|
*/
|
|
94052
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94053
|
-
return jspb.Message.setField(this,
|
|
94532
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearCurrency = function() {
|
|
94533
|
+
return jspb.Message.setField(this, 15, undefined);
|
|
94054
94534
|
};
|
|
94055
94535
|
|
|
94056
94536
|
|
|
@@ -94058,26 +94538,26 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearRequestedStak
|
|
|
94058
94538
|
* Returns whether this field is set.
|
|
94059
94539
|
* @return {boolean}
|
|
94060
94540
|
*/
|
|
94061
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94062
|
-
return jspb.Message.getField(this,
|
|
94541
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasCurrency = function() {
|
|
94542
|
+
return jspb.Message.getField(this, 15) != null;
|
|
94063
94543
|
};
|
|
94064
94544
|
|
|
94065
94545
|
|
|
94066
94546
|
/**
|
|
94067
|
-
* optional
|
|
94068
|
-
* @return {
|
|
94547
|
+
* optional int32 currency_scale = 16;
|
|
94548
|
+
* @return {number}
|
|
94069
94549
|
*/
|
|
94070
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94071
|
-
return /** @type {
|
|
94550
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getCurrencyScale = function() {
|
|
94551
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 16, 0));
|
|
94072
94552
|
};
|
|
94073
94553
|
|
|
94074
94554
|
|
|
94075
94555
|
/**
|
|
94076
|
-
* @param {
|
|
94556
|
+
* @param {number} value
|
|
94077
94557
|
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94078
94558
|
*/
|
|
94079
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94080
|
-
return jspb.Message.setField(this,
|
|
94559
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setCurrencyScale = function(value) {
|
|
94560
|
+
return jspb.Message.setField(this, 16, value);
|
|
94081
94561
|
};
|
|
94082
94562
|
|
|
94083
94563
|
|
|
@@ -94085,8 +94565,8 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setCurrentWindowSt
|
|
|
94085
94565
|
* Clears the field making it undefined.
|
|
94086
94566
|
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94087
94567
|
*/
|
|
94088
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94089
|
-
return jspb.Message.setField(this,
|
|
94568
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearCurrencyScale = function() {
|
|
94569
|
+
return jspb.Message.setField(this, 16, undefined);
|
|
94090
94570
|
};
|
|
94091
94571
|
|
|
94092
94572
|
|
|
@@ -94094,17 +94574,17 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearCurrentWindow
|
|
|
94094
94574
|
* Returns whether this field is set.
|
|
94095
94575
|
* @return {boolean}
|
|
94096
94576
|
*/
|
|
94097
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94098
|
-
return jspb.Message.getField(this,
|
|
94577
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasCurrencyScale = function() {
|
|
94578
|
+
return jspb.Message.getField(this, 16) != null;
|
|
94099
94579
|
};
|
|
94100
94580
|
|
|
94101
94581
|
|
|
94102
94582
|
/**
|
|
94103
|
-
* optional string
|
|
94583
|
+
* optional string policy_id = 17;
|
|
94104
94584
|
* @return {string}
|
|
94105
94585
|
*/
|
|
94106
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94107
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
94586
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getPolicyId = function() {
|
|
94587
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
|
|
94108
94588
|
};
|
|
94109
94589
|
|
|
94110
94590
|
|
|
@@ -94112,8 +94592,8 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getCurrentWindowEn
|
|
|
94112
94592
|
* @param {string} value
|
|
94113
94593
|
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94114
94594
|
*/
|
|
94115
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94116
|
-
return jspb.Message.setField(this,
|
|
94595
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setPolicyId = function(value) {
|
|
94596
|
+
return jspb.Message.setField(this, 17, value);
|
|
94117
94597
|
};
|
|
94118
94598
|
|
|
94119
94599
|
|
|
@@ -94121,8 +94601,8 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setCurrentWindowEn
|
|
|
94121
94601
|
* Clears the field making it undefined.
|
|
94122
94602
|
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94123
94603
|
*/
|
|
94124
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94125
|
-
return jspb.Message.setField(this,
|
|
94604
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearPolicyId = function() {
|
|
94605
|
+
return jspb.Message.setField(this, 17, undefined);
|
|
94126
94606
|
};
|
|
94127
94607
|
|
|
94128
94608
|
|
|
@@ -94130,8 +94610,8 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearCurrentWindow
|
|
|
94130
94610
|
* Returns whether this field is set.
|
|
94131
94611
|
* @return {boolean}
|
|
94132
94612
|
*/
|
|
94133
|
-
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.
|
|
94134
|
-
return jspb.Message.getField(this,
|
|
94613
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasPolicyId = function() {
|
|
94614
|
+
return jspb.Message.getField(this, 17) != null;
|
|
94135
94615
|
};
|
|
94136
94616
|
|
|
94137
94617
|
|
|
@@ -94176,7 +94656,10 @@ proto.user.ResponsibleGamingTimeLimitDecisionDetail.toObject = function(includeI
|
|
|
94176
94656
|
activeSessionId: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
94177
94657
|
lastActivityAt: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
94178
94658
|
currentWindowStart: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
94179
|
-
currentWindowEnd: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
94659
|
+
currentWindowEnd: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
94660
|
+
recurringPeriod: jspb.Message.getFieldWithDefault(msg, 11, 0),
|
|
94661
|
+
limitSeconds: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
94662
|
+
policyId: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
94180
94663
|
};
|
|
94181
94664
|
|
|
94182
94665
|
if (includeInstance) {
|
|
@@ -94253,6 +94736,18 @@ proto.user.ResponsibleGamingTimeLimitDecisionDetail.deserializeBinaryFromReader
|
|
|
94253
94736
|
var value = /** @type {string} */ (reader.readString());
|
|
94254
94737
|
msg.setCurrentWindowEnd(value);
|
|
94255
94738
|
break;
|
|
94739
|
+
case 11:
|
|
94740
|
+
var value = /** @type {!proto.user.ResponsibleGamingRecurringPeriod} */ (reader.readEnum());
|
|
94741
|
+
msg.setRecurringPeriod(value);
|
|
94742
|
+
break;
|
|
94743
|
+
case 12:
|
|
94744
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
94745
|
+
msg.setLimitSeconds(value);
|
|
94746
|
+
break;
|
|
94747
|
+
case 13:
|
|
94748
|
+
var value = /** @type {string} */ (reader.readString());
|
|
94749
|
+
msg.setPolicyId(value);
|
|
94750
|
+
break;
|
|
94256
94751
|
default:
|
|
94257
94752
|
reader.skipField();
|
|
94258
94753
|
break;
|
|
@@ -94352,6 +94847,27 @@ proto.user.ResponsibleGamingTimeLimitDecisionDetail.serializeBinaryToWriter = fu
|
|
|
94352
94847
|
f
|
|
94353
94848
|
);
|
|
94354
94849
|
}
|
|
94850
|
+
f = /** @type {!proto.user.ResponsibleGamingRecurringPeriod} */ (jspb.Message.getField(message, 11));
|
|
94851
|
+
if (f != null) {
|
|
94852
|
+
writer.writeEnum(
|
|
94853
|
+
11,
|
|
94854
|
+
f
|
|
94855
|
+
);
|
|
94856
|
+
}
|
|
94857
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 12));
|
|
94858
|
+
if (f != null) {
|
|
94859
|
+
writer.writeInt64(
|
|
94860
|
+
12,
|
|
94861
|
+
f
|
|
94862
|
+
);
|
|
94863
|
+
}
|
|
94864
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
|
94865
|
+
if (f != null) {
|
|
94866
|
+
writer.writeString(
|
|
94867
|
+
13,
|
|
94868
|
+
f
|
|
94869
|
+
);
|
|
94870
|
+
}
|
|
94355
94871
|
};
|
|
94356
94872
|
|
|
94357
94873
|
|
|
@@ -94661,6 +95177,114 @@ proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.hasCurrentWindowEn
|
|
|
94661
95177
|
};
|
|
94662
95178
|
|
|
94663
95179
|
|
|
95180
|
+
/**
|
|
95181
|
+
* optional ResponsibleGamingRecurringPeriod recurring_period = 11;
|
|
95182
|
+
* @return {!proto.user.ResponsibleGamingRecurringPeriod}
|
|
95183
|
+
*/
|
|
95184
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.getRecurringPeriod = function() {
|
|
95185
|
+
return /** @type {!proto.user.ResponsibleGamingRecurringPeriod} */ (jspb.Message.getFieldWithDefault(this, 11, 0));
|
|
95186
|
+
};
|
|
95187
|
+
|
|
95188
|
+
|
|
95189
|
+
/**
|
|
95190
|
+
* @param {!proto.user.ResponsibleGamingRecurringPeriod} value
|
|
95191
|
+
* @return {!proto.user.ResponsibleGamingTimeLimitDecisionDetail} returns this
|
|
95192
|
+
*/
|
|
95193
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.setRecurringPeriod = function(value) {
|
|
95194
|
+
return jspb.Message.setField(this, 11, value);
|
|
95195
|
+
};
|
|
95196
|
+
|
|
95197
|
+
|
|
95198
|
+
/**
|
|
95199
|
+
* Clears the field making it undefined.
|
|
95200
|
+
* @return {!proto.user.ResponsibleGamingTimeLimitDecisionDetail} returns this
|
|
95201
|
+
*/
|
|
95202
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.clearRecurringPeriod = function() {
|
|
95203
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
95204
|
+
};
|
|
95205
|
+
|
|
95206
|
+
|
|
95207
|
+
/**
|
|
95208
|
+
* Returns whether this field is set.
|
|
95209
|
+
* @return {boolean}
|
|
95210
|
+
*/
|
|
95211
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.hasRecurringPeriod = function() {
|
|
95212
|
+
return jspb.Message.getField(this, 11) != null;
|
|
95213
|
+
};
|
|
95214
|
+
|
|
95215
|
+
|
|
95216
|
+
/**
|
|
95217
|
+
* optional int64 limit_seconds = 12;
|
|
95218
|
+
* @return {number}
|
|
95219
|
+
*/
|
|
95220
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.getLimitSeconds = function() {
|
|
95221
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
|
95222
|
+
};
|
|
95223
|
+
|
|
95224
|
+
|
|
95225
|
+
/**
|
|
95226
|
+
* @param {number} value
|
|
95227
|
+
* @return {!proto.user.ResponsibleGamingTimeLimitDecisionDetail} returns this
|
|
95228
|
+
*/
|
|
95229
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.setLimitSeconds = function(value) {
|
|
95230
|
+
return jspb.Message.setField(this, 12, value);
|
|
95231
|
+
};
|
|
95232
|
+
|
|
95233
|
+
|
|
95234
|
+
/**
|
|
95235
|
+
* Clears the field making it undefined.
|
|
95236
|
+
* @return {!proto.user.ResponsibleGamingTimeLimitDecisionDetail} returns this
|
|
95237
|
+
*/
|
|
95238
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.clearLimitSeconds = function() {
|
|
95239
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
95240
|
+
};
|
|
95241
|
+
|
|
95242
|
+
|
|
95243
|
+
/**
|
|
95244
|
+
* Returns whether this field is set.
|
|
95245
|
+
* @return {boolean}
|
|
95246
|
+
*/
|
|
95247
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.hasLimitSeconds = function() {
|
|
95248
|
+
return jspb.Message.getField(this, 12) != null;
|
|
95249
|
+
};
|
|
95250
|
+
|
|
95251
|
+
|
|
95252
|
+
/**
|
|
95253
|
+
* optional string policy_id = 13;
|
|
95254
|
+
* @return {string}
|
|
95255
|
+
*/
|
|
95256
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.getPolicyId = function() {
|
|
95257
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
95258
|
+
};
|
|
95259
|
+
|
|
95260
|
+
|
|
95261
|
+
/**
|
|
95262
|
+
* @param {string} value
|
|
95263
|
+
* @return {!proto.user.ResponsibleGamingTimeLimitDecisionDetail} returns this
|
|
95264
|
+
*/
|
|
95265
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.setPolicyId = function(value) {
|
|
95266
|
+
return jspb.Message.setField(this, 13, value);
|
|
95267
|
+
};
|
|
95268
|
+
|
|
95269
|
+
|
|
95270
|
+
/**
|
|
95271
|
+
* Clears the field making it undefined.
|
|
95272
|
+
* @return {!proto.user.ResponsibleGamingTimeLimitDecisionDetail} returns this
|
|
95273
|
+
*/
|
|
95274
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.clearPolicyId = function() {
|
|
95275
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
95276
|
+
};
|
|
95277
|
+
|
|
95278
|
+
|
|
95279
|
+
/**
|
|
95280
|
+
* Returns whether this field is set.
|
|
95281
|
+
* @return {boolean}
|
|
95282
|
+
*/
|
|
95283
|
+
proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.hasPolicyId = function() {
|
|
95284
|
+
return jspb.Message.getField(this, 13) != null;
|
|
95285
|
+
};
|
|
95286
|
+
|
|
95287
|
+
|
|
94664
95288
|
|
|
94665
95289
|
|
|
94666
95290
|
|
|
@@ -100882,7 +101506,9 @@ proto.user.UpdateResponsibleGamingTimeUsageResponse.toObject = function(includeI
|
|
|
100882
101506
|
usedSeconds: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
100883
101507
|
remainingSeconds: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
100884
101508
|
lastActivityAt: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
100885
|
-
limitReached: jspb.Message.getBooleanFieldWithDefault(msg, 8, false)
|
|
101509
|
+
limitReached: jspb.Message.getBooleanFieldWithDefault(msg, 8, false),
|
|
101510
|
+
reasonKey: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
101511
|
+
decisionDetails: (f = msg.getDecisionDetails()) && proto.user.ResponsibleGamingDecisionDetails.toObject(includeInstance, f)
|
|
100886
101512
|
};
|
|
100887
101513
|
|
|
100888
101514
|
if (includeInstance) {
|
|
@@ -100951,6 +101577,15 @@ proto.user.UpdateResponsibleGamingTimeUsageResponse.deserializeBinaryFromReader
|
|
|
100951
101577
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
100952
101578
|
msg.setLimitReached(value);
|
|
100953
101579
|
break;
|
|
101580
|
+
case 9:
|
|
101581
|
+
var value = /** @type {string} */ (reader.readString());
|
|
101582
|
+
msg.setReasonKey(value);
|
|
101583
|
+
break;
|
|
101584
|
+
case 10:
|
|
101585
|
+
var value = new proto.user.ResponsibleGamingDecisionDetails;
|
|
101586
|
+
reader.readMessage(value,proto.user.ResponsibleGamingDecisionDetails.deserializeBinaryFromReader);
|
|
101587
|
+
msg.setDecisionDetails(value);
|
|
101588
|
+
break;
|
|
100954
101589
|
default:
|
|
100955
101590
|
reader.skipField();
|
|
100956
101591
|
break;
|
|
@@ -101036,6 +101671,21 @@ proto.user.UpdateResponsibleGamingTimeUsageResponse.serializeBinaryToWriter = fu
|
|
|
101036
101671
|
f
|
|
101037
101672
|
);
|
|
101038
101673
|
}
|
|
101674
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 9));
|
|
101675
|
+
if (f != null) {
|
|
101676
|
+
writer.writeString(
|
|
101677
|
+
9,
|
|
101678
|
+
f
|
|
101679
|
+
);
|
|
101680
|
+
}
|
|
101681
|
+
f = message.getDecisionDetails();
|
|
101682
|
+
if (f != null) {
|
|
101683
|
+
writer.writeMessage(
|
|
101684
|
+
10,
|
|
101685
|
+
f,
|
|
101686
|
+
proto.user.ResponsibleGamingDecisionDetails.serializeBinaryToWriter
|
|
101687
|
+
);
|
|
101688
|
+
}
|
|
101039
101689
|
};
|
|
101040
101690
|
|
|
101041
101691
|
|
|
@@ -101309,6 +101959,79 @@ proto.user.UpdateResponsibleGamingTimeUsageResponse.prototype.setLimitReached =
|
|
|
101309
101959
|
};
|
|
101310
101960
|
|
|
101311
101961
|
|
|
101962
|
+
/**
|
|
101963
|
+
* optional string reason_key = 9;
|
|
101964
|
+
* @return {string}
|
|
101965
|
+
*/
|
|
101966
|
+
proto.user.UpdateResponsibleGamingTimeUsageResponse.prototype.getReasonKey = function() {
|
|
101967
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
101968
|
+
};
|
|
101969
|
+
|
|
101970
|
+
|
|
101971
|
+
/**
|
|
101972
|
+
* @param {string} value
|
|
101973
|
+
* @return {!proto.user.UpdateResponsibleGamingTimeUsageResponse} returns this
|
|
101974
|
+
*/
|
|
101975
|
+
proto.user.UpdateResponsibleGamingTimeUsageResponse.prototype.setReasonKey = function(value) {
|
|
101976
|
+
return jspb.Message.setField(this, 9, value);
|
|
101977
|
+
};
|
|
101978
|
+
|
|
101979
|
+
|
|
101980
|
+
/**
|
|
101981
|
+
* Clears the field making it undefined.
|
|
101982
|
+
* @return {!proto.user.UpdateResponsibleGamingTimeUsageResponse} returns this
|
|
101983
|
+
*/
|
|
101984
|
+
proto.user.UpdateResponsibleGamingTimeUsageResponse.prototype.clearReasonKey = function() {
|
|
101985
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
101986
|
+
};
|
|
101987
|
+
|
|
101988
|
+
|
|
101989
|
+
/**
|
|
101990
|
+
* Returns whether this field is set.
|
|
101991
|
+
* @return {boolean}
|
|
101992
|
+
*/
|
|
101993
|
+
proto.user.UpdateResponsibleGamingTimeUsageResponse.prototype.hasReasonKey = function() {
|
|
101994
|
+
return jspb.Message.getField(this, 9) != null;
|
|
101995
|
+
};
|
|
101996
|
+
|
|
101997
|
+
|
|
101998
|
+
/**
|
|
101999
|
+
* optional ResponsibleGamingDecisionDetails decision_details = 10;
|
|
102000
|
+
* @return {?proto.user.ResponsibleGamingDecisionDetails}
|
|
102001
|
+
*/
|
|
102002
|
+
proto.user.UpdateResponsibleGamingTimeUsageResponse.prototype.getDecisionDetails = function() {
|
|
102003
|
+
return /** @type{?proto.user.ResponsibleGamingDecisionDetails} */ (
|
|
102004
|
+
jspb.Message.getWrapperField(this, proto.user.ResponsibleGamingDecisionDetails, 10));
|
|
102005
|
+
};
|
|
102006
|
+
|
|
102007
|
+
|
|
102008
|
+
/**
|
|
102009
|
+
* @param {?proto.user.ResponsibleGamingDecisionDetails|undefined} value
|
|
102010
|
+
* @return {!proto.user.UpdateResponsibleGamingTimeUsageResponse} returns this
|
|
102011
|
+
*/
|
|
102012
|
+
proto.user.UpdateResponsibleGamingTimeUsageResponse.prototype.setDecisionDetails = function(value) {
|
|
102013
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
102014
|
+
};
|
|
102015
|
+
|
|
102016
|
+
|
|
102017
|
+
/**
|
|
102018
|
+
* Clears the message field making it undefined.
|
|
102019
|
+
* @return {!proto.user.UpdateResponsibleGamingTimeUsageResponse} returns this
|
|
102020
|
+
*/
|
|
102021
|
+
proto.user.UpdateResponsibleGamingTimeUsageResponse.prototype.clearDecisionDetails = function() {
|
|
102022
|
+
return this.setDecisionDetails(undefined);
|
|
102023
|
+
};
|
|
102024
|
+
|
|
102025
|
+
|
|
102026
|
+
/**
|
|
102027
|
+
* Returns whether this field is set.
|
|
102028
|
+
* @return {boolean}
|
|
102029
|
+
*/
|
|
102030
|
+
proto.user.UpdateResponsibleGamingTimeUsageResponse.prototype.hasDecisionDetails = function() {
|
|
102031
|
+
return jspb.Message.getField(this, 10) != null;
|
|
102032
|
+
};
|
|
102033
|
+
|
|
102034
|
+
|
|
101312
102035
|
/**
|
|
101313
102036
|
* @enum {number}
|
|
101314
102037
|
*/
|