protobuf-platform 1.2.605 → 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 +20 -0
- package/user/user_grpc_pb.js +22 -0
- package/user/user_pb.js +909 -4
package/package.json
CHANGED
package/user/user.proto
CHANGED
|
@@ -99,6 +99,7 @@ service User {
|
|
|
99
99
|
rpc readUserKycDocument(ReadUserKycDocumentRequest) returns (UserKycDocumentItem);
|
|
100
100
|
rpc readListUserKycDocuments(ReadListUserKycDocumentsRequest) returns (UserKycDocumentListResponse);
|
|
101
101
|
rpc readUserKycDocumentOptions(ReadUserKycDocumentOptionsRequest) returns (UserKycDocumentOptionsResponse);
|
|
102
|
+
rpc readUserKycDocumentPreview(ReadUserKycDocumentPreviewRequest) returns (UserKycVerificationDocumentPreviewResponse);
|
|
102
103
|
// Submit an existing user KYC document record to the active verification provider.
|
|
103
104
|
rpc ingestUserKycDocumentToProvider(IngestUserKycDocumentToProviderRequest) returns (UserKycDocumentItem);
|
|
104
105
|
// Provider-agnostic KYC: bootstrap verification context (purpose/flow only; provider resolved internally).
|
|
@@ -1529,6 +1530,10 @@ message UserKycDocumentsResponse {
|
|
|
1529
1530
|
message ReadUserKycDocumentRequest {
|
|
1530
1531
|
int32 id = 1;
|
|
1531
1532
|
}
|
|
1533
|
+
message ReadUserKycDocumentPreviewRequest {
|
|
1534
|
+
int32 user_id = 1;
|
|
1535
|
+
int64 document_id = 2;
|
|
1536
|
+
}
|
|
1532
1537
|
message ReadListUserKycDocumentsRequest {
|
|
1533
1538
|
int32 limit = 1;
|
|
1534
1539
|
int32 offset = 2;
|
|
@@ -2315,6 +2320,11 @@ message ResponsibleGamingDepositLimitDecisionDetail {
|
|
|
2315
2320
|
optional int64 requested_amount_minor = 6;
|
|
2316
2321
|
optional string current_window_start = 7;
|
|
2317
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;
|
|
2318
2328
|
}
|
|
2319
2329
|
message ResponsibleGamingLossLimitDecisionDetail {
|
|
2320
2330
|
bool configured = 1;
|
|
@@ -2329,6 +2339,11 @@ message ResponsibleGamingLossLimitDecisionDetail {
|
|
|
2329
2339
|
optional int64 requested_stake_minor = 10;
|
|
2330
2340
|
optional string current_window_start = 11;
|
|
2331
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;
|
|
2332
2347
|
}
|
|
2333
2348
|
message ResponsibleGamingTimeLimitDecisionDetail {
|
|
2334
2349
|
bool configured = 1;
|
|
@@ -2341,6 +2356,9 @@ message ResponsibleGamingTimeLimitDecisionDetail {
|
|
|
2341
2356
|
optional string last_activity_at = 8;
|
|
2342
2357
|
optional string current_window_start = 9;
|
|
2343
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;
|
|
2344
2362
|
}
|
|
2345
2363
|
message ResponsibleGamingCoolingOffDecisionDetail {
|
|
2346
2364
|
bool active = 1;
|
|
@@ -2492,4 +2510,6 @@ message UpdateResponsibleGamingTimeUsageResponse {
|
|
|
2492
2510
|
optional int64 remaining_seconds = 6;
|
|
2493
2511
|
optional string last_activity_at = 7;
|
|
2494
2512
|
bool limit_reached = 8;
|
|
2513
|
+
optional string reason_key = 9;
|
|
2514
|
+
optional ResponsibleGamingDecisionDetails decision_details = 10;
|
|
2495
2515
|
}
|
package/user/user_grpc_pb.js
CHANGED
|
@@ -1159,6 +1159,17 @@ function deserialize_user_ReadUserKycDocumentOptionsRequest(buffer_arg) {
|
|
|
1159
1159
|
return user_pb.ReadUserKycDocumentOptionsRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
1160
1160
|
}
|
|
1161
1161
|
|
|
1162
|
+
function serialize_user_ReadUserKycDocumentPreviewRequest(arg) {
|
|
1163
|
+
if (!(arg instanceof user_pb.ReadUserKycDocumentPreviewRequest)) {
|
|
1164
|
+
throw new Error('Expected argument of type user.ReadUserKycDocumentPreviewRequest');
|
|
1165
|
+
}
|
|
1166
|
+
return Buffer.from(arg.serializeBinary());
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
function deserialize_user_ReadUserKycDocumentPreviewRequest(buffer_arg) {
|
|
1170
|
+
return user_pb.ReadUserKycDocumentPreviewRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1162
1173
|
function serialize_user_ReadUserKycDocumentRequest(arg) {
|
|
1163
1174
|
if (!(arg instanceof user_pb.ReadUserKycDocumentRequest)) {
|
|
1164
1175
|
throw new Error('Expected argument of type user.ReadUserKycDocumentRequest');
|
|
@@ -3256,6 +3267,17 @@ readUserKycDocuments: {
|
|
|
3256
3267
|
responseSerialize: serialize_user_UserKycDocumentOptionsResponse,
|
|
3257
3268
|
responseDeserialize: deserialize_user_UserKycDocumentOptionsResponse,
|
|
3258
3269
|
},
|
|
3270
|
+
readUserKycDocumentPreview: {
|
|
3271
|
+
path: '/user.User/readUserKycDocumentPreview',
|
|
3272
|
+
requestStream: false,
|
|
3273
|
+
responseStream: false,
|
|
3274
|
+
requestType: user_pb.ReadUserKycDocumentPreviewRequest,
|
|
3275
|
+
responseType: user_pb.UserKycVerificationDocumentPreviewResponse,
|
|
3276
|
+
requestSerialize: serialize_user_ReadUserKycDocumentPreviewRequest,
|
|
3277
|
+
requestDeserialize: deserialize_user_ReadUserKycDocumentPreviewRequest,
|
|
3278
|
+
responseSerialize: serialize_user_UserKycVerificationDocumentPreviewResponse,
|
|
3279
|
+
responseDeserialize: deserialize_user_UserKycVerificationDocumentPreviewResponse,
|
|
3280
|
+
},
|
|
3259
3281
|
// Submit an existing user KYC document record to the active verification provider.
|
|
3260
3282
|
ingestUserKycDocumentToProvider: {
|
|
3261
3283
|
path: '/user.User/ingestUserKycDocumentToProvider',
|
package/user/user_pb.js
CHANGED
|
@@ -137,6 +137,7 @@ goog.exportSymbol('proto.user.ReadRiskPermissionMatrixLimitsRequest', null, glob
|
|
|
137
137
|
goog.exportSymbol('proto.user.ReadRiskPermissionMatrixRequest', null, global);
|
|
138
138
|
goog.exportSymbol('proto.user.ReadUserCalculatedRestrictionsRequest', null, global);
|
|
139
139
|
goog.exportSymbol('proto.user.ReadUserKycDocumentOptionsRequest', null, global);
|
|
140
|
+
goog.exportSymbol('proto.user.ReadUserKycDocumentPreviewRequest', null, global);
|
|
140
141
|
goog.exportSymbol('proto.user.ReadUserKycDocumentRequest', null, global);
|
|
141
142
|
goog.exportSymbol('proto.user.ReadUserKycDocumentsRequest', null, global);
|
|
142
143
|
goog.exportSymbol('proto.user.ReadUserKycProfileRequest', null, global);
|
|
@@ -3523,6 +3524,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
3523
3524
|
*/
|
|
3524
3525
|
proto.user.ReadUserKycDocumentRequest.displayName = 'proto.user.ReadUserKycDocumentRequest';
|
|
3525
3526
|
}
|
|
3527
|
+
/**
|
|
3528
|
+
* Generated by JsPbCodeGenerator.
|
|
3529
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
3530
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
3531
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
3532
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
3533
|
+
* valid.
|
|
3534
|
+
* @extends {jspb.Message}
|
|
3535
|
+
* @constructor
|
|
3536
|
+
*/
|
|
3537
|
+
proto.user.ReadUserKycDocumentPreviewRequest = function(opt_data) {
|
|
3538
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
3539
|
+
};
|
|
3540
|
+
goog.inherits(proto.user.ReadUserKycDocumentPreviewRequest, jspb.Message);
|
|
3541
|
+
if (goog.DEBUG && !COMPILED) {
|
|
3542
|
+
/**
|
|
3543
|
+
* @public
|
|
3544
|
+
* @override
|
|
3545
|
+
*/
|
|
3546
|
+
proto.user.ReadUserKycDocumentPreviewRequest.displayName = 'proto.user.ReadUserKycDocumentPreviewRequest';
|
|
3547
|
+
}
|
|
3526
3548
|
/**
|
|
3527
3549
|
* Generated by JsPbCodeGenerator.
|
|
3528
3550
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -64602,6 +64624,166 @@ proto.user.ReadUserKycDocumentRequest.prototype.setId = function(value) {
|
|
|
64602
64624
|
|
|
64603
64625
|
|
|
64604
64626
|
|
|
64627
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
64628
|
+
/**
|
|
64629
|
+
* Creates an object representation of this proto.
|
|
64630
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
64631
|
+
* Optional fields that are not set will be set to undefined.
|
|
64632
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
64633
|
+
* For the list of reserved names please see:
|
|
64634
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
64635
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
64636
|
+
* JSPB instance for transitional soy proto support:
|
|
64637
|
+
* http://goto/soy-param-migration
|
|
64638
|
+
* @return {!Object}
|
|
64639
|
+
*/
|
|
64640
|
+
proto.user.ReadUserKycDocumentPreviewRequest.prototype.toObject = function(opt_includeInstance) {
|
|
64641
|
+
return proto.user.ReadUserKycDocumentPreviewRequest.toObject(opt_includeInstance, this);
|
|
64642
|
+
};
|
|
64643
|
+
|
|
64644
|
+
|
|
64645
|
+
/**
|
|
64646
|
+
* Static version of the {@see toObject} method.
|
|
64647
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
64648
|
+
* the JSPB instance for transitional soy proto support:
|
|
64649
|
+
* http://goto/soy-param-migration
|
|
64650
|
+
* @param {!proto.user.ReadUserKycDocumentPreviewRequest} msg The msg instance to transform.
|
|
64651
|
+
* @return {!Object}
|
|
64652
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
64653
|
+
*/
|
|
64654
|
+
proto.user.ReadUserKycDocumentPreviewRequest.toObject = function(includeInstance, msg) {
|
|
64655
|
+
var f, obj = {
|
|
64656
|
+
userId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
64657
|
+
documentId: jspb.Message.getFieldWithDefault(msg, 2, 0)
|
|
64658
|
+
};
|
|
64659
|
+
|
|
64660
|
+
if (includeInstance) {
|
|
64661
|
+
obj.$jspbMessageInstance = msg;
|
|
64662
|
+
}
|
|
64663
|
+
return obj;
|
|
64664
|
+
};
|
|
64665
|
+
}
|
|
64666
|
+
|
|
64667
|
+
|
|
64668
|
+
/**
|
|
64669
|
+
* Deserializes binary data (in protobuf wire format).
|
|
64670
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
64671
|
+
* @return {!proto.user.ReadUserKycDocumentPreviewRequest}
|
|
64672
|
+
*/
|
|
64673
|
+
proto.user.ReadUserKycDocumentPreviewRequest.deserializeBinary = function(bytes) {
|
|
64674
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
64675
|
+
var msg = new proto.user.ReadUserKycDocumentPreviewRequest;
|
|
64676
|
+
return proto.user.ReadUserKycDocumentPreviewRequest.deserializeBinaryFromReader(msg, reader);
|
|
64677
|
+
};
|
|
64678
|
+
|
|
64679
|
+
|
|
64680
|
+
/**
|
|
64681
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
64682
|
+
* given reader into the given message object.
|
|
64683
|
+
* @param {!proto.user.ReadUserKycDocumentPreviewRequest} msg The message object to deserialize into.
|
|
64684
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
64685
|
+
* @return {!proto.user.ReadUserKycDocumentPreviewRequest}
|
|
64686
|
+
*/
|
|
64687
|
+
proto.user.ReadUserKycDocumentPreviewRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
64688
|
+
while (reader.nextField()) {
|
|
64689
|
+
if (reader.isEndGroup()) {
|
|
64690
|
+
break;
|
|
64691
|
+
}
|
|
64692
|
+
var field = reader.getFieldNumber();
|
|
64693
|
+
switch (field) {
|
|
64694
|
+
case 1:
|
|
64695
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
64696
|
+
msg.setUserId(value);
|
|
64697
|
+
break;
|
|
64698
|
+
case 2:
|
|
64699
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
64700
|
+
msg.setDocumentId(value);
|
|
64701
|
+
break;
|
|
64702
|
+
default:
|
|
64703
|
+
reader.skipField();
|
|
64704
|
+
break;
|
|
64705
|
+
}
|
|
64706
|
+
}
|
|
64707
|
+
return msg;
|
|
64708
|
+
};
|
|
64709
|
+
|
|
64710
|
+
|
|
64711
|
+
/**
|
|
64712
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
64713
|
+
* @return {!Uint8Array}
|
|
64714
|
+
*/
|
|
64715
|
+
proto.user.ReadUserKycDocumentPreviewRequest.prototype.serializeBinary = function() {
|
|
64716
|
+
var writer = new jspb.BinaryWriter();
|
|
64717
|
+
proto.user.ReadUserKycDocumentPreviewRequest.serializeBinaryToWriter(this, writer);
|
|
64718
|
+
return writer.getResultBuffer();
|
|
64719
|
+
};
|
|
64720
|
+
|
|
64721
|
+
|
|
64722
|
+
/**
|
|
64723
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
64724
|
+
* format), writing to the given BinaryWriter.
|
|
64725
|
+
* @param {!proto.user.ReadUserKycDocumentPreviewRequest} message
|
|
64726
|
+
* @param {!jspb.BinaryWriter} writer
|
|
64727
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
64728
|
+
*/
|
|
64729
|
+
proto.user.ReadUserKycDocumentPreviewRequest.serializeBinaryToWriter = function(message, writer) {
|
|
64730
|
+
var f = undefined;
|
|
64731
|
+
f = message.getUserId();
|
|
64732
|
+
if (f !== 0) {
|
|
64733
|
+
writer.writeInt32(
|
|
64734
|
+
1,
|
|
64735
|
+
f
|
|
64736
|
+
);
|
|
64737
|
+
}
|
|
64738
|
+
f = message.getDocumentId();
|
|
64739
|
+
if (f !== 0) {
|
|
64740
|
+
writer.writeInt64(
|
|
64741
|
+
2,
|
|
64742
|
+
f
|
|
64743
|
+
);
|
|
64744
|
+
}
|
|
64745
|
+
};
|
|
64746
|
+
|
|
64747
|
+
|
|
64748
|
+
/**
|
|
64749
|
+
* optional int32 user_id = 1;
|
|
64750
|
+
* @return {number}
|
|
64751
|
+
*/
|
|
64752
|
+
proto.user.ReadUserKycDocumentPreviewRequest.prototype.getUserId = function() {
|
|
64753
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
64754
|
+
};
|
|
64755
|
+
|
|
64756
|
+
|
|
64757
|
+
/**
|
|
64758
|
+
* @param {number} value
|
|
64759
|
+
* @return {!proto.user.ReadUserKycDocumentPreviewRequest} returns this
|
|
64760
|
+
*/
|
|
64761
|
+
proto.user.ReadUserKycDocumentPreviewRequest.prototype.setUserId = function(value) {
|
|
64762
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
64763
|
+
};
|
|
64764
|
+
|
|
64765
|
+
|
|
64766
|
+
/**
|
|
64767
|
+
* optional int64 document_id = 2;
|
|
64768
|
+
* @return {number}
|
|
64769
|
+
*/
|
|
64770
|
+
proto.user.ReadUserKycDocumentPreviewRequest.prototype.getDocumentId = function() {
|
|
64771
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
64772
|
+
};
|
|
64773
|
+
|
|
64774
|
+
|
|
64775
|
+
/**
|
|
64776
|
+
* @param {number} value
|
|
64777
|
+
* @return {!proto.user.ReadUserKycDocumentPreviewRequest} returns this
|
|
64778
|
+
*/
|
|
64779
|
+
proto.user.ReadUserKycDocumentPreviewRequest.prototype.setDocumentId = function(value) {
|
|
64780
|
+
return jspb.Message.setProto3IntField(this, 2, value);
|
|
64781
|
+
};
|
|
64782
|
+
|
|
64783
|
+
|
|
64784
|
+
|
|
64785
|
+
|
|
64786
|
+
|
|
64605
64787
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
64606
64788
|
/**
|
|
64607
64789
|
* Creates an object representation of this proto.
|
|
@@ -92904,7 +93086,12 @@ proto.user.ResponsibleGamingDepositLimitDecisionDetail.toObject = function(inclu
|
|
|
92904
93086
|
remainingMinor: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
92905
93087
|
requestedAmountMinor: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
92906
93088
|
currentWindowStart: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
92907
|
-
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, "")
|
|
92908
93095
|
};
|
|
92909
93096
|
|
|
92910
93097
|
if (includeInstance) {
|
|
@@ -92973,6 +93160,26 @@ proto.user.ResponsibleGamingDepositLimitDecisionDetail.deserializeBinaryFromRead
|
|
|
92973
93160
|
var value = /** @type {string} */ (reader.readString());
|
|
92974
93161
|
msg.setCurrentWindowEnd(value);
|
|
92975
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;
|
|
92976
93183
|
default:
|
|
92977
93184
|
reader.skipField();
|
|
92978
93185
|
break;
|
|
@@ -93058,6 +93265,41 @@ proto.user.ResponsibleGamingDepositLimitDecisionDetail.serializeBinaryToWriter =
|
|
|
93058
93265
|
f
|
|
93059
93266
|
);
|
|
93060
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
|
+
}
|
|
93061
93303
|
};
|
|
93062
93304
|
|
|
93063
93305
|
|
|
@@ -93313,6 +93555,186 @@ proto.user.ResponsibleGamingDepositLimitDecisionDetail.prototype.hasCurrentWindo
|
|
|
93313
93555
|
};
|
|
93314
93556
|
|
|
93315
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
|
+
|
|
93316
93738
|
|
|
93317
93739
|
|
|
93318
93740
|
|
|
@@ -93356,7 +93778,12 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.toObject = function(includeI
|
|
|
93356
93778
|
remainingStakeMinor: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
93357
93779
|
requestedStakeMinor: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
|
93358
93780
|
currentWindowStart: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
93359
|
-
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, "")
|
|
93360
93787
|
};
|
|
93361
93788
|
|
|
93362
93789
|
if (includeInstance) {
|
|
@@ -93441,6 +93868,26 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.deserializeBinaryFromReader
|
|
|
93441
93868
|
var value = /** @type {string} */ (reader.readString());
|
|
93442
93869
|
msg.setCurrentWindowEnd(value);
|
|
93443
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;
|
|
93444
93891
|
default:
|
|
93445
93892
|
reader.skipField();
|
|
93446
93893
|
break;
|
|
@@ -93554,6 +94001,41 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.serializeBinaryToWriter = fu
|
|
|
93554
94001
|
f
|
|
93555
94002
|
);
|
|
93556
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
|
+
}
|
|
93557
94039
|
};
|
|
93558
94040
|
|
|
93559
94041
|
|
|
@@ -93953,6 +94435,186 @@ proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasCurrentWindowEn
|
|
|
93953
94435
|
};
|
|
93954
94436
|
|
|
93955
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}
|
|
94513
|
+
*/
|
|
94514
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getCurrency = function() {
|
|
94515
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
94516
|
+
};
|
|
94517
|
+
|
|
94518
|
+
|
|
94519
|
+
/**
|
|
94520
|
+
* @param {string} value
|
|
94521
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94522
|
+
*/
|
|
94523
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setCurrency = function(value) {
|
|
94524
|
+
return jspb.Message.setField(this, 15, value);
|
|
94525
|
+
};
|
|
94526
|
+
|
|
94527
|
+
|
|
94528
|
+
/**
|
|
94529
|
+
* Clears the field making it undefined.
|
|
94530
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94531
|
+
*/
|
|
94532
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearCurrency = function() {
|
|
94533
|
+
return jspb.Message.setField(this, 15, undefined);
|
|
94534
|
+
};
|
|
94535
|
+
|
|
94536
|
+
|
|
94537
|
+
/**
|
|
94538
|
+
* Returns whether this field is set.
|
|
94539
|
+
* @return {boolean}
|
|
94540
|
+
*/
|
|
94541
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasCurrency = function() {
|
|
94542
|
+
return jspb.Message.getField(this, 15) != null;
|
|
94543
|
+
};
|
|
94544
|
+
|
|
94545
|
+
|
|
94546
|
+
/**
|
|
94547
|
+
* optional int32 currency_scale = 16;
|
|
94548
|
+
* @return {number}
|
|
94549
|
+
*/
|
|
94550
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getCurrencyScale = function() {
|
|
94551
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 16, 0));
|
|
94552
|
+
};
|
|
94553
|
+
|
|
94554
|
+
|
|
94555
|
+
/**
|
|
94556
|
+
* @param {number} value
|
|
94557
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94558
|
+
*/
|
|
94559
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setCurrencyScale = function(value) {
|
|
94560
|
+
return jspb.Message.setField(this, 16, value);
|
|
94561
|
+
};
|
|
94562
|
+
|
|
94563
|
+
|
|
94564
|
+
/**
|
|
94565
|
+
* Clears the field making it undefined.
|
|
94566
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94567
|
+
*/
|
|
94568
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearCurrencyScale = function() {
|
|
94569
|
+
return jspb.Message.setField(this, 16, undefined);
|
|
94570
|
+
};
|
|
94571
|
+
|
|
94572
|
+
|
|
94573
|
+
/**
|
|
94574
|
+
* Returns whether this field is set.
|
|
94575
|
+
* @return {boolean}
|
|
94576
|
+
*/
|
|
94577
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasCurrencyScale = function() {
|
|
94578
|
+
return jspb.Message.getField(this, 16) != null;
|
|
94579
|
+
};
|
|
94580
|
+
|
|
94581
|
+
|
|
94582
|
+
/**
|
|
94583
|
+
* optional string policy_id = 17;
|
|
94584
|
+
* @return {string}
|
|
94585
|
+
*/
|
|
94586
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.getPolicyId = function() {
|
|
94587
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
|
|
94588
|
+
};
|
|
94589
|
+
|
|
94590
|
+
|
|
94591
|
+
/**
|
|
94592
|
+
* @param {string} value
|
|
94593
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94594
|
+
*/
|
|
94595
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.setPolicyId = function(value) {
|
|
94596
|
+
return jspb.Message.setField(this, 17, value);
|
|
94597
|
+
};
|
|
94598
|
+
|
|
94599
|
+
|
|
94600
|
+
/**
|
|
94601
|
+
* Clears the field making it undefined.
|
|
94602
|
+
* @return {!proto.user.ResponsibleGamingLossLimitDecisionDetail} returns this
|
|
94603
|
+
*/
|
|
94604
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.clearPolicyId = function() {
|
|
94605
|
+
return jspb.Message.setField(this, 17, undefined);
|
|
94606
|
+
};
|
|
94607
|
+
|
|
94608
|
+
|
|
94609
|
+
/**
|
|
94610
|
+
* Returns whether this field is set.
|
|
94611
|
+
* @return {boolean}
|
|
94612
|
+
*/
|
|
94613
|
+
proto.user.ResponsibleGamingLossLimitDecisionDetail.prototype.hasPolicyId = function() {
|
|
94614
|
+
return jspb.Message.getField(this, 17) != null;
|
|
94615
|
+
};
|
|
94616
|
+
|
|
94617
|
+
|
|
93956
94618
|
|
|
93957
94619
|
|
|
93958
94620
|
|
|
@@ -93994,7 +94656,10 @@ proto.user.ResponsibleGamingTimeLimitDecisionDetail.toObject = function(includeI
|
|
|
93994
94656
|
activeSessionId: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
93995
94657
|
lastActivityAt: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
93996
94658
|
currentWindowStart: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
93997
|
-
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, "")
|
|
93998
94663
|
};
|
|
93999
94664
|
|
|
94000
94665
|
if (includeInstance) {
|
|
@@ -94071,6 +94736,18 @@ proto.user.ResponsibleGamingTimeLimitDecisionDetail.deserializeBinaryFromReader
|
|
|
94071
94736
|
var value = /** @type {string} */ (reader.readString());
|
|
94072
94737
|
msg.setCurrentWindowEnd(value);
|
|
94073
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;
|
|
94074
94751
|
default:
|
|
94075
94752
|
reader.skipField();
|
|
94076
94753
|
break;
|
|
@@ -94170,6 +94847,27 @@ proto.user.ResponsibleGamingTimeLimitDecisionDetail.serializeBinaryToWriter = fu
|
|
|
94170
94847
|
f
|
|
94171
94848
|
);
|
|
94172
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
|
+
}
|
|
94173
94871
|
};
|
|
94174
94872
|
|
|
94175
94873
|
|
|
@@ -94479,6 +95177,114 @@ proto.user.ResponsibleGamingTimeLimitDecisionDetail.prototype.hasCurrentWindowEn
|
|
|
94479
95177
|
};
|
|
94480
95178
|
|
|
94481
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
|
+
|
|
94482
95288
|
|
|
94483
95289
|
|
|
94484
95290
|
|
|
@@ -100700,7 +101506,9 @@ proto.user.UpdateResponsibleGamingTimeUsageResponse.toObject = function(includeI
|
|
|
100700
101506
|
usedSeconds: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
100701
101507
|
remainingSeconds: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
100702
101508
|
lastActivityAt: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
100703
|
-
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)
|
|
100704
101512
|
};
|
|
100705
101513
|
|
|
100706
101514
|
if (includeInstance) {
|
|
@@ -100769,6 +101577,15 @@ proto.user.UpdateResponsibleGamingTimeUsageResponse.deserializeBinaryFromReader
|
|
|
100769
101577
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
100770
101578
|
msg.setLimitReached(value);
|
|
100771
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;
|
|
100772
101589
|
default:
|
|
100773
101590
|
reader.skipField();
|
|
100774
101591
|
break;
|
|
@@ -100854,6 +101671,21 @@ proto.user.UpdateResponsibleGamingTimeUsageResponse.serializeBinaryToWriter = fu
|
|
|
100854
101671
|
f
|
|
100855
101672
|
);
|
|
100856
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
|
+
}
|
|
100857
101689
|
};
|
|
100858
101690
|
|
|
100859
101691
|
|
|
@@ -101127,6 +101959,79 @@ proto.user.UpdateResponsibleGamingTimeUsageResponse.prototype.setLimitReached =
|
|
|
101127
101959
|
};
|
|
101128
101960
|
|
|
101129
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
|
+
|
|
101130
102035
|
/**
|
|
101131
102036
|
* @enum {number}
|
|
101132
102037
|
*/
|