protobuf-platform 1.2.580 → 1.2.583
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/notification/notification.proto +5 -0
- package/notification/notification_pb.js +237 -2
- package/package.json +1 -1
- package/payment/payment.proto +57 -0
- package/payment/payment_grpc_pb.js +44 -0
- package/payment/payment_pb.js +2937 -619
package/payment/payment_pb.js
CHANGED
|
@@ -21,6 +21,10 @@ var global = (function() {
|
|
|
21
21
|
return Function('return this')();
|
|
22
22
|
}.call(null));
|
|
23
23
|
|
|
24
|
+
goog.exportSymbol('proto.payment.AdjustmentItem', null, global);
|
|
25
|
+
goog.exportSymbol('proto.payment.AdjustmentItemsResponse', null, global);
|
|
26
|
+
goog.exportSymbol('proto.payment.AdjustmentRequest', null, global);
|
|
27
|
+
goog.exportSymbol('proto.payment.AdjustmentSearchRequest', null, global);
|
|
24
28
|
goog.exportSymbol('proto.payment.AttemptDepositRequest', null, global);
|
|
25
29
|
goog.exportSymbol('proto.payment.AttemptWithdrawalRequest', null, global);
|
|
26
30
|
goog.exportSymbol('proto.payment.CashierFieldItem', null, global);
|
|
@@ -2316,6 +2320,90 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
2316
2320
|
*/
|
|
2317
2321
|
proto.payment.CompensationItemsResponse.displayName = 'proto.payment.CompensationItemsResponse';
|
|
2318
2322
|
}
|
|
2323
|
+
/**
|
|
2324
|
+
* Generated by JsPbCodeGenerator.
|
|
2325
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
2326
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
2327
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
2328
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
2329
|
+
* valid.
|
|
2330
|
+
* @extends {jspb.Message}
|
|
2331
|
+
* @constructor
|
|
2332
|
+
*/
|
|
2333
|
+
proto.payment.AdjustmentRequest = function(opt_data) {
|
|
2334
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
2335
|
+
};
|
|
2336
|
+
goog.inherits(proto.payment.AdjustmentRequest, jspb.Message);
|
|
2337
|
+
if (goog.DEBUG && !COMPILED) {
|
|
2338
|
+
/**
|
|
2339
|
+
* @public
|
|
2340
|
+
* @override
|
|
2341
|
+
*/
|
|
2342
|
+
proto.payment.AdjustmentRequest.displayName = 'proto.payment.AdjustmentRequest';
|
|
2343
|
+
}
|
|
2344
|
+
/**
|
|
2345
|
+
* Generated by JsPbCodeGenerator.
|
|
2346
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
2347
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
2348
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
2349
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
2350
|
+
* valid.
|
|
2351
|
+
* @extends {jspb.Message}
|
|
2352
|
+
* @constructor
|
|
2353
|
+
*/
|
|
2354
|
+
proto.payment.AdjustmentSearchRequest = function(opt_data) {
|
|
2355
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.payment.AdjustmentSearchRequest.repeatedFields_, null);
|
|
2356
|
+
};
|
|
2357
|
+
goog.inherits(proto.payment.AdjustmentSearchRequest, jspb.Message);
|
|
2358
|
+
if (goog.DEBUG && !COMPILED) {
|
|
2359
|
+
/**
|
|
2360
|
+
* @public
|
|
2361
|
+
* @override
|
|
2362
|
+
*/
|
|
2363
|
+
proto.payment.AdjustmentSearchRequest.displayName = 'proto.payment.AdjustmentSearchRequest';
|
|
2364
|
+
}
|
|
2365
|
+
/**
|
|
2366
|
+
* Generated by JsPbCodeGenerator.
|
|
2367
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
2368
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
2369
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
2370
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
2371
|
+
* valid.
|
|
2372
|
+
* @extends {jspb.Message}
|
|
2373
|
+
* @constructor
|
|
2374
|
+
*/
|
|
2375
|
+
proto.payment.AdjustmentItem = function(opt_data) {
|
|
2376
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
2377
|
+
};
|
|
2378
|
+
goog.inherits(proto.payment.AdjustmentItem, jspb.Message);
|
|
2379
|
+
if (goog.DEBUG && !COMPILED) {
|
|
2380
|
+
/**
|
|
2381
|
+
* @public
|
|
2382
|
+
* @override
|
|
2383
|
+
*/
|
|
2384
|
+
proto.payment.AdjustmentItem.displayName = 'proto.payment.AdjustmentItem';
|
|
2385
|
+
}
|
|
2386
|
+
/**
|
|
2387
|
+
* Generated by JsPbCodeGenerator.
|
|
2388
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
2389
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
2390
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
2391
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
2392
|
+
* valid.
|
|
2393
|
+
* @extends {jspb.Message}
|
|
2394
|
+
* @constructor
|
|
2395
|
+
*/
|
|
2396
|
+
proto.payment.AdjustmentItemsResponse = function(opt_data) {
|
|
2397
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.payment.AdjustmentItemsResponse.repeatedFields_, null);
|
|
2398
|
+
};
|
|
2399
|
+
goog.inherits(proto.payment.AdjustmentItemsResponse, jspb.Message);
|
|
2400
|
+
if (goog.DEBUG && !COMPILED) {
|
|
2401
|
+
/**
|
|
2402
|
+
* @public
|
|
2403
|
+
* @override
|
|
2404
|
+
*/
|
|
2405
|
+
proto.payment.AdjustmentItemsResponse.displayName = 'proto.payment.AdjustmentItemsResponse';
|
|
2406
|
+
}
|
|
2319
2407
|
/**
|
|
2320
2408
|
* Generated by JsPbCodeGenerator.
|
|
2321
2409
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -3128,7 +3216,8 @@ proto.payment.PaginationRequest.toObject = function(includeInstance, msg) {
|
|
|
3128
3216
|
order: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
3129
3217
|
paymentSearchParams: (f = msg.getPaymentSearchParams()) && proto.payment.PaymentSearchRequest.toObject(includeInstance, f),
|
|
3130
3218
|
compensationSearchParams: (f = msg.getCompensationSearchParams()) && proto.payment.CompensationSearchRequest.toObject(includeInstance, f),
|
|
3131
|
-
confiscationSearchParams: (f = msg.getConfiscationSearchParams()) && proto.payment.ConfiscationSearchRequest.toObject(includeInstance, f)
|
|
3219
|
+
confiscationSearchParams: (f = msg.getConfiscationSearchParams()) && proto.payment.ConfiscationSearchRequest.toObject(includeInstance, f),
|
|
3220
|
+
adjustmentSearchParams: (f = msg.getAdjustmentSearchParams()) && proto.payment.AdjustmentSearchRequest.toObject(includeInstance, f)
|
|
3132
3221
|
};
|
|
3133
3222
|
|
|
3134
3223
|
if (includeInstance) {
|
|
@@ -3192,6 +3281,11 @@ proto.payment.PaginationRequest.deserializeBinaryFromReader = function(msg, read
|
|
|
3192
3281
|
reader.readMessage(value,proto.payment.ConfiscationSearchRequest.deserializeBinaryFromReader);
|
|
3193
3282
|
msg.setConfiscationSearchParams(value);
|
|
3194
3283
|
break;
|
|
3284
|
+
case 7:
|
|
3285
|
+
var value = new proto.payment.AdjustmentSearchRequest;
|
|
3286
|
+
reader.readMessage(value,proto.payment.AdjustmentSearchRequest.deserializeBinaryFromReader);
|
|
3287
|
+
msg.setAdjustmentSearchParams(value);
|
|
3288
|
+
break;
|
|
3195
3289
|
default:
|
|
3196
3290
|
reader.skipField();
|
|
3197
3291
|
break;
|
|
@@ -3266,6 +3360,14 @@ proto.payment.PaginationRequest.serializeBinaryToWriter = function(message, writ
|
|
|
3266
3360
|
proto.payment.ConfiscationSearchRequest.serializeBinaryToWriter
|
|
3267
3361
|
);
|
|
3268
3362
|
}
|
|
3363
|
+
f = message.getAdjustmentSearchParams();
|
|
3364
|
+
if (f != null) {
|
|
3365
|
+
writer.writeMessage(
|
|
3366
|
+
7,
|
|
3367
|
+
f,
|
|
3368
|
+
proto.payment.AdjustmentSearchRequest.serializeBinaryToWriter
|
|
3369
|
+
);
|
|
3370
|
+
}
|
|
3269
3371
|
};
|
|
3270
3372
|
|
|
3271
3373
|
|
|
@@ -3452,6 +3554,43 @@ proto.payment.PaginationRequest.prototype.hasConfiscationSearchParams = function
|
|
|
3452
3554
|
};
|
|
3453
3555
|
|
|
3454
3556
|
|
|
3557
|
+
/**
|
|
3558
|
+
* optional AdjustmentSearchRequest adjustment_search_params = 7;
|
|
3559
|
+
* @return {?proto.payment.AdjustmentSearchRequest}
|
|
3560
|
+
*/
|
|
3561
|
+
proto.payment.PaginationRequest.prototype.getAdjustmentSearchParams = function() {
|
|
3562
|
+
return /** @type{?proto.payment.AdjustmentSearchRequest} */ (
|
|
3563
|
+
jspb.Message.getWrapperField(this, proto.payment.AdjustmentSearchRequest, 7));
|
|
3564
|
+
};
|
|
3565
|
+
|
|
3566
|
+
|
|
3567
|
+
/**
|
|
3568
|
+
* @param {?proto.payment.AdjustmentSearchRequest|undefined} value
|
|
3569
|
+
* @return {!proto.payment.PaginationRequest} returns this
|
|
3570
|
+
*/
|
|
3571
|
+
proto.payment.PaginationRequest.prototype.setAdjustmentSearchParams = function(value) {
|
|
3572
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
3573
|
+
};
|
|
3574
|
+
|
|
3575
|
+
|
|
3576
|
+
/**
|
|
3577
|
+
* Clears the message field making it undefined.
|
|
3578
|
+
* @return {!proto.payment.PaginationRequest} returns this
|
|
3579
|
+
*/
|
|
3580
|
+
proto.payment.PaginationRequest.prototype.clearAdjustmentSearchParams = function() {
|
|
3581
|
+
return this.setAdjustmentSearchParams(undefined);
|
|
3582
|
+
};
|
|
3583
|
+
|
|
3584
|
+
|
|
3585
|
+
/**
|
|
3586
|
+
* Returns whether this field is set.
|
|
3587
|
+
* @return {boolean}
|
|
3588
|
+
*/
|
|
3589
|
+
proto.payment.PaginationRequest.prototype.hasAdjustmentSearchParams = function() {
|
|
3590
|
+
return jspb.Message.getField(this, 7) != null;
|
|
3591
|
+
};
|
|
3592
|
+
|
|
3593
|
+
|
|
3455
3594
|
|
|
3456
3595
|
/**
|
|
3457
3596
|
* List of repeated fields within this message type.
|
|
@@ -41554,7 +41693,9 @@ proto.payment.CompensationRequest.toObject = function(includeInstance, msg) {
|
|
|
41554
41693
|
transactionCode: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
41555
41694
|
internalComment: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
41556
41695
|
amount: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
41557
|
-
promoOrBonusId: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
41696
|
+
promoOrBonusId: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
41697
|
+
userBonusId: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
41698
|
+
bonusId: jspb.Message.getFieldWithDefault(msg, 13, 0)
|
|
41558
41699
|
};
|
|
41559
41700
|
|
|
41560
41701
|
if (includeInstance) {
|
|
@@ -41635,6 +41776,14 @@ proto.payment.CompensationRequest.deserializeBinaryFromReader = function(msg, re
|
|
|
41635
41776
|
var value = /** @type {string} */ (reader.readString());
|
|
41636
41777
|
msg.setPromoOrBonusId(value);
|
|
41637
41778
|
break;
|
|
41779
|
+
case 12:
|
|
41780
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
41781
|
+
msg.setUserBonusId(value);
|
|
41782
|
+
break;
|
|
41783
|
+
case 13:
|
|
41784
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
41785
|
+
msg.setBonusId(value);
|
|
41786
|
+
break;
|
|
41638
41787
|
default:
|
|
41639
41788
|
reader.skipField();
|
|
41640
41789
|
break;
|
|
@@ -41706,38 +41855,2388 @@ proto.payment.CompensationRequest.serializeBinaryToWriter = function(message, wr
|
|
|
41706
41855
|
f
|
|
41707
41856
|
);
|
|
41708
41857
|
}
|
|
41709
|
-
f = message.getCompensationType();
|
|
41710
|
-
if (f.length > 0) {
|
|
41711
|
-
writer.writeString(
|
|
41712
|
-
7,
|
|
41713
|
-
f
|
|
41714
|
-
);
|
|
41715
|
-
}
|
|
41858
|
+
f = message.getCompensationType();
|
|
41859
|
+
if (f.length > 0) {
|
|
41860
|
+
writer.writeString(
|
|
41861
|
+
7,
|
|
41862
|
+
f
|
|
41863
|
+
);
|
|
41864
|
+
}
|
|
41865
|
+
f = message.getTransactionCode();
|
|
41866
|
+
if (f.length > 0) {
|
|
41867
|
+
writer.writeString(
|
|
41868
|
+
8,
|
|
41869
|
+
f
|
|
41870
|
+
);
|
|
41871
|
+
}
|
|
41872
|
+
f = message.getInternalComment();
|
|
41873
|
+
if (f.length > 0) {
|
|
41874
|
+
writer.writeString(
|
|
41875
|
+
9,
|
|
41876
|
+
f
|
|
41877
|
+
);
|
|
41878
|
+
}
|
|
41879
|
+
f = message.getAmount();
|
|
41880
|
+
if (f.length > 0) {
|
|
41881
|
+
writer.writeString(
|
|
41882
|
+
10,
|
|
41883
|
+
f
|
|
41884
|
+
);
|
|
41885
|
+
}
|
|
41886
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 11));
|
|
41887
|
+
if (f != null) {
|
|
41888
|
+
writer.writeString(
|
|
41889
|
+
11,
|
|
41890
|
+
f
|
|
41891
|
+
);
|
|
41892
|
+
}
|
|
41893
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 12));
|
|
41894
|
+
if (f != null) {
|
|
41895
|
+
writer.writeInt32(
|
|
41896
|
+
12,
|
|
41897
|
+
f
|
|
41898
|
+
);
|
|
41899
|
+
}
|
|
41900
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 13));
|
|
41901
|
+
if (f != null) {
|
|
41902
|
+
writer.writeInt32(
|
|
41903
|
+
13,
|
|
41904
|
+
f
|
|
41905
|
+
);
|
|
41906
|
+
}
|
|
41907
|
+
};
|
|
41908
|
+
|
|
41909
|
+
|
|
41910
|
+
/**
|
|
41911
|
+
* optional int32 user_id = 1;
|
|
41912
|
+
* @return {number}
|
|
41913
|
+
*/
|
|
41914
|
+
proto.payment.CompensationRequest.prototype.getUserId = function() {
|
|
41915
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
41916
|
+
};
|
|
41917
|
+
|
|
41918
|
+
|
|
41919
|
+
/**
|
|
41920
|
+
* @param {number} value
|
|
41921
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
41922
|
+
*/
|
|
41923
|
+
proto.payment.CompensationRequest.prototype.setUserId = function(value) {
|
|
41924
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
41925
|
+
};
|
|
41926
|
+
|
|
41927
|
+
|
|
41928
|
+
/**
|
|
41929
|
+
* optional int64 amount_minor = 2;
|
|
41930
|
+
* @return {number}
|
|
41931
|
+
*/
|
|
41932
|
+
proto.payment.CompensationRequest.prototype.getAmountMinor = function() {
|
|
41933
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
41934
|
+
};
|
|
41935
|
+
|
|
41936
|
+
|
|
41937
|
+
/**
|
|
41938
|
+
* @param {number} value
|
|
41939
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
41940
|
+
*/
|
|
41941
|
+
proto.payment.CompensationRequest.prototype.setAmountMinor = function(value) {
|
|
41942
|
+
return jspb.Message.setProto3IntField(this, 2, value);
|
|
41943
|
+
};
|
|
41944
|
+
|
|
41945
|
+
|
|
41946
|
+
/**
|
|
41947
|
+
* optional string currency = 3;
|
|
41948
|
+
* @return {string}
|
|
41949
|
+
*/
|
|
41950
|
+
proto.payment.CompensationRequest.prototype.getCurrency = function() {
|
|
41951
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
41952
|
+
};
|
|
41953
|
+
|
|
41954
|
+
|
|
41955
|
+
/**
|
|
41956
|
+
* @param {string} value
|
|
41957
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
41958
|
+
*/
|
|
41959
|
+
proto.payment.CompensationRequest.prototype.setCurrency = function(value) {
|
|
41960
|
+
return jspb.Message.setField(this, 3, value);
|
|
41961
|
+
};
|
|
41962
|
+
|
|
41963
|
+
|
|
41964
|
+
/**
|
|
41965
|
+
* Clears the field making it undefined.
|
|
41966
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
41967
|
+
*/
|
|
41968
|
+
proto.payment.CompensationRequest.prototype.clearCurrency = function() {
|
|
41969
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
41970
|
+
};
|
|
41971
|
+
|
|
41972
|
+
|
|
41973
|
+
/**
|
|
41974
|
+
* Returns whether this field is set.
|
|
41975
|
+
* @return {boolean}
|
|
41976
|
+
*/
|
|
41977
|
+
proto.payment.CompensationRequest.prototype.hasCurrency = function() {
|
|
41978
|
+
return jspb.Message.getField(this, 3) != null;
|
|
41979
|
+
};
|
|
41980
|
+
|
|
41981
|
+
|
|
41982
|
+
/**
|
|
41983
|
+
* optional string wager_multiplier = 4;
|
|
41984
|
+
* @return {string}
|
|
41985
|
+
*/
|
|
41986
|
+
proto.payment.CompensationRequest.prototype.getWagerMultiplier = function() {
|
|
41987
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
41988
|
+
};
|
|
41989
|
+
|
|
41990
|
+
|
|
41991
|
+
/**
|
|
41992
|
+
* @param {string} value
|
|
41993
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
41994
|
+
*/
|
|
41995
|
+
proto.payment.CompensationRequest.prototype.setWagerMultiplier = function(value) {
|
|
41996
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
41997
|
+
};
|
|
41998
|
+
|
|
41999
|
+
|
|
42000
|
+
/**
|
|
42001
|
+
* optional string reason = 5;
|
|
42002
|
+
* @return {string}
|
|
42003
|
+
*/
|
|
42004
|
+
proto.payment.CompensationRequest.prototype.getReason = function() {
|
|
42005
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
42006
|
+
};
|
|
42007
|
+
|
|
42008
|
+
|
|
42009
|
+
/**
|
|
42010
|
+
* @param {string} value
|
|
42011
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42012
|
+
*/
|
|
42013
|
+
proto.payment.CompensationRequest.prototype.setReason = function(value) {
|
|
42014
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
42015
|
+
};
|
|
42016
|
+
|
|
42017
|
+
|
|
42018
|
+
/**
|
|
42019
|
+
* optional string idempotency_id = 6;
|
|
42020
|
+
* @return {string}
|
|
42021
|
+
*/
|
|
42022
|
+
proto.payment.CompensationRequest.prototype.getIdempotencyId = function() {
|
|
42023
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
42024
|
+
};
|
|
42025
|
+
|
|
42026
|
+
|
|
42027
|
+
/**
|
|
42028
|
+
* @param {string} value
|
|
42029
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42030
|
+
*/
|
|
42031
|
+
proto.payment.CompensationRequest.prototype.setIdempotencyId = function(value) {
|
|
42032
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
42033
|
+
};
|
|
42034
|
+
|
|
42035
|
+
|
|
42036
|
+
/**
|
|
42037
|
+
* optional string compensation_type = 7;
|
|
42038
|
+
* @return {string}
|
|
42039
|
+
*/
|
|
42040
|
+
proto.payment.CompensationRequest.prototype.getCompensationType = function() {
|
|
42041
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
42042
|
+
};
|
|
42043
|
+
|
|
42044
|
+
|
|
42045
|
+
/**
|
|
42046
|
+
* @param {string} value
|
|
42047
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42048
|
+
*/
|
|
42049
|
+
proto.payment.CompensationRequest.prototype.setCompensationType = function(value) {
|
|
42050
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
42051
|
+
};
|
|
42052
|
+
|
|
42053
|
+
|
|
42054
|
+
/**
|
|
42055
|
+
* optional string transaction_code = 8;
|
|
42056
|
+
* @return {string}
|
|
42057
|
+
*/
|
|
42058
|
+
proto.payment.CompensationRequest.prototype.getTransactionCode = function() {
|
|
42059
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
42060
|
+
};
|
|
42061
|
+
|
|
42062
|
+
|
|
42063
|
+
/**
|
|
42064
|
+
* @param {string} value
|
|
42065
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42066
|
+
*/
|
|
42067
|
+
proto.payment.CompensationRequest.prototype.setTransactionCode = function(value) {
|
|
42068
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
42069
|
+
};
|
|
42070
|
+
|
|
42071
|
+
|
|
42072
|
+
/**
|
|
42073
|
+
* optional string internal_comment = 9;
|
|
42074
|
+
* @return {string}
|
|
42075
|
+
*/
|
|
42076
|
+
proto.payment.CompensationRequest.prototype.getInternalComment = function() {
|
|
42077
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
42078
|
+
};
|
|
42079
|
+
|
|
42080
|
+
|
|
42081
|
+
/**
|
|
42082
|
+
* @param {string} value
|
|
42083
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42084
|
+
*/
|
|
42085
|
+
proto.payment.CompensationRequest.prototype.setInternalComment = function(value) {
|
|
42086
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
42087
|
+
};
|
|
42088
|
+
|
|
42089
|
+
|
|
42090
|
+
/**
|
|
42091
|
+
* optional string amount = 10;
|
|
42092
|
+
* @return {string}
|
|
42093
|
+
*/
|
|
42094
|
+
proto.payment.CompensationRequest.prototype.getAmount = function() {
|
|
42095
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
42096
|
+
};
|
|
42097
|
+
|
|
42098
|
+
|
|
42099
|
+
/**
|
|
42100
|
+
* @param {string} value
|
|
42101
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42102
|
+
*/
|
|
42103
|
+
proto.payment.CompensationRequest.prototype.setAmount = function(value) {
|
|
42104
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
42105
|
+
};
|
|
42106
|
+
|
|
42107
|
+
|
|
42108
|
+
/**
|
|
42109
|
+
* optional string promo_or_bonus_id = 11;
|
|
42110
|
+
* @return {string}
|
|
42111
|
+
*/
|
|
42112
|
+
proto.payment.CompensationRequest.prototype.getPromoOrBonusId = function() {
|
|
42113
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
42114
|
+
};
|
|
42115
|
+
|
|
42116
|
+
|
|
42117
|
+
/**
|
|
42118
|
+
* @param {string} value
|
|
42119
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42120
|
+
*/
|
|
42121
|
+
proto.payment.CompensationRequest.prototype.setPromoOrBonusId = function(value) {
|
|
42122
|
+
return jspb.Message.setField(this, 11, value);
|
|
42123
|
+
};
|
|
42124
|
+
|
|
42125
|
+
|
|
42126
|
+
/**
|
|
42127
|
+
* Clears the field making it undefined.
|
|
42128
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42129
|
+
*/
|
|
42130
|
+
proto.payment.CompensationRequest.prototype.clearPromoOrBonusId = function() {
|
|
42131
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
42132
|
+
};
|
|
42133
|
+
|
|
42134
|
+
|
|
42135
|
+
/**
|
|
42136
|
+
* Returns whether this field is set.
|
|
42137
|
+
* @return {boolean}
|
|
42138
|
+
*/
|
|
42139
|
+
proto.payment.CompensationRequest.prototype.hasPromoOrBonusId = function() {
|
|
42140
|
+
return jspb.Message.getField(this, 11) != null;
|
|
42141
|
+
};
|
|
42142
|
+
|
|
42143
|
+
|
|
42144
|
+
/**
|
|
42145
|
+
* optional int32 user_bonus_id = 12;
|
|
42146
|
+
* @return {number}
|
|
42147
|
+
*/
|
|
42148
|
+
proto.payment.CompensationRequest.prototype.getUserBonusId = function() {
|
|
42149
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
|
42150
|
+
};
|
|
42151
|
+
|
|
42152
|
+
|
|
42153
|
+
/**
|
|
42154
|
+
* @param {number} value
|
|
42155
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42156
|
+
*/
|
|
42157
|
+
proto.payment.CompensationRequest.prototype.setUserBonusId = function(value) {
|
|
42158
|
+
return jspb.Message.setField(this, 12, value);
|
|
42159
|
+
};
|
|
42160
|
+
|
|
42161
|
+
|
|
42162
|
+
/**
|
|
42163
|
+
* Clears the field making it undefined.
|
|
42164
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42165
|
+
*/
|
|
42166
|
+
proto.payment.CompensationRequest.prototype.clearUserBonusId = function() {
|
|
42167
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
42168
|
+
};
|
|
42169
|
+
|
|
42170
|
+
|
|
42171
|
+
/**
|
|
42172
|
+
* Returns whether this field is set.
|
|
42173
|
+
* @return {boolean}
|
|
42174
|
+
*/
|
|
42175
|
+
proto.payment.CompensationRequest.prototype.hasUserBonusId = function() {
|
|
42176
|
+
return jspb.Message.getField(this, 12) != null;
|
|
42177
|
+
};
|
|
42178
|
+
|
|
42179
|
+
|
|
42180
|
+
/**
|
|
42181
|
+
* optional int32 bonus_id = 13;
|
|
42182
|
+
* @return {number}
|
|
42183
|
+
*/
|
|
42184
|
+
proto.payment.CompensationRequest.prototype.getBonusId = function() {
|
|
42185
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
|
|
42186
|
+
};
|
|
42187
|
+
|
|
42188
|
+
|
|
42189
|
+
/**
|
|
42190
|
+
* @param {number} value
|
|
42191
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42192
|
+
*/
|
|
42193
|
+
proto.payment.CompensationRequest.prototype.setBonusId = function(value) {
|
|
42194
|
+
return jspb.Message.setField(this, 13, value);
|
|
42195
|
+
};
|
|
42196
|
+
|
|
42197
|
+
|
|
42198
|
+
/**
|
|
42199
|
+
* Clears the field making it undefined.
|
|
42200
|
+
* @return {!proto.payment.CompensationRequest} returns this
|
|
42201
|
+
*/
|
|
42202
|
+
proto.payment.CompensationRequest.prototype.clearBonusId = function() {
|
|
42203
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
42204
|
+
};
|
|
42205
|
+
|
|
42206
|
+
|
|
42207
|
+
/**
|
|
42208
|
+
* Returns whether this field is set.
|
|
42209
|
+
* @return {boolean}
|
|
42210
|
+
*/
|
|
42211
|
+
proto.payment.CompensationRequest.prototype.hasBonusId = function() {
|
|
42212
|
+
return jspb.Message.getField(this, 13) != null;
|
|
42213
|
+
};
|
|
42214
|
+
|
|
42215
|
+
|
|
42216
|
+
|
|
42217
|
+
/**
|
|
42218
|
+
* List of repeated fields within this message type.
|
|
42219
|
+
* @private {!Array<number>}
|
|
42220
|
+
* @const
|
|
42221
|
+
*/
|
|
42222
|
+
proto.payment.CompensationSearchRequest.repeatedFields_ = [2,3,5,8,10];
|
|
42223
|
+
|
|
42224
|
+
|
|
42225
|
+
|
|
42226
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
42227
|
+
/**
|
|
42228
|
+
* Creates an object representation of this proto.
|
|
42229
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
42230
|
+
* Optional fields that are not set will be set to undefined.
|
|
42231
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
42232
|
+
* For the list of reserved names please see:
|
|
42233
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
42234
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
42235
|
+
* JSPB instance for transitional soy proto support:
|
|
42236
|
+
* http://goto/soy-param-migration
|
|
42237
|
+
* @return {!Object}
|
|
42238
|
+
*/
|
|
42239
|
+
proto.payment.CompensationSearchRequest.prototype.toObject = function(opt_includeInstance) {
|
|
42240
|
+
return proto.payment.CompensationSearchRequest.toObject(opt_includeInstance, this);
|
|
42241
|
+
};
|
|
42242
|
+
|
|
42243
|
+
|
|
42244
|
+
/**
|
|
42245
|
+
* Static version of the {@see toObject} method.
|
|
42246
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
42247
|
+
* the JSPB instance for transitional soy proto support:
|
|
42248
|
+
* http://goto/soy-param-migration
|
|
42249
|
+
* @param {!proto.payment.CompensationSearchRequest} msg The msg instance to transform.
|
|
42250
|
+
* @return {!Object}
|
|
42251
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
42252
|
+
*/
|
|
42253
|
+
proto.payment.CompensationSearchRequest.toObject = function(includeInstance, msg) {
|
|
42254
|
+
var f, obj = {
|
|
42255
|
+
operationId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
42256
|
+
userIdsList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
42257
|
+
compensationTypesList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f,
|
|
42258
|
+
transactionCode: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
42259
|
+
operationStatusCodesList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
42260
|
+
createdFrom: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
42261
|
+
createdTo: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
42262
|
+
currencyList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
|
|
42263
|
+
playerNickname: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
42264
|
+
operatorIdsList: (f = jspb.Message.getRepeatedField(msg, 10)) == null ? undefined : f,
|
|
42265
|
+
amountMinorFrom: jspb.Message.getFieldWithDefault(msg, 11, 0),
|
|
42266
|
+
amountMinorTo: jspb.Message.getFieldWithDefault(msg, 12, 0)
|
|
42267
|
+
};
|
|
42268
|
+
|
|
42269
|
+
if (includeInstance) {
|
|
42270
|
+
obj.$jspbMessageInstance = msg;
|
|
42271
|
+
}
|
|
42272
|
+
return obj;
|
|
42273
|
+
};
|
|
42274
|
+
}
|
|
42275
|
+
|
|
42276
|
+
|
|
42277
|
+
/**
|
|
42278
|
+
* Deserializes binary data (in protobuf wire format).
|
|
42279
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
42280
|
+
* @return {!proto.payment.CompensationSearchRequest}
|
|
42281
|
+
*/
|
|
42282
|
+
proto.payment.CompensationSearchRequest.deserializeBinary = function(bytes) {
|
|
42283
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
42284
|
+
var msg = new proto.payment.CompensationSearchRequest;
|
|
42285
|
+
return proto.payment.CompensationSearchRequest.deserializeBinaryFromReader(msg, reader);
|
|
42286
|
+
};
|
|
42287
|
+
|
|
42288
|
+
|
|
42289
|
+
/**
|
|
42290
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
42291
|
+
* given reader into the given message object.
|
|
42292
|
+
* @param {!proto.payment.CompensationSearchRequest} msg The message object to deserialize into.
|
|
42293
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
42294
|
+
* @return {!proto.payment.CompensationSearchRequest}
|
|
42295
|
+
*/
|
|
42296
|
+
proto.payment.CompensationSearchRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
42297
|
+
while (reader.nextField()) {
|
|
42298
|
+
if (reader.isEndGroup()) {
|
|
42299
|
+
break;
|
|
42300
|
+
}
|
|
42301
|
+
var field = reader.getFieldNumber();
|
|
42302
|
+
switch (field) {
|
|
42303
|
+
case 1:
|
|
42304
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
42305
|
+
msg.setOperationId(value);
|
|
42306
|
+
break;
|
|
42307
|
+
case 2:
|
|
42308
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt32() : [reader.readInt32()]);
|
|
42309
|
+
for (var i = 0; i < values.length; i++) {
|
|
42310
|
+
msg.addUserIds(values[i]);
|
|
42311
|
+
}
|
|
42312
|
+
break;
|
|
42313
|
+
case 3:
|
|
42314
|
+
var value = /** @type {string} */ (reader.readString());
|
|
42315
|
+
msg.addCompensationTypes(value);
|
|
42316
|
+
break;
|
|
42317
|
+
case 4:
|
|
42318
|
+
var value = /** @type {string} */ (reader.readString());
|
|
42319
|
+
msg.setTransactionCode(value);
|
|
42320
|
+
break;
|
|
42321
|
+
case 5:
|
|
42322
|
+
var value = /** @type {string} */ (reader.readString());
|
|
42323
|
+
msg.addOperationStatusCodes(value);
|
|
42324
|
+
break;
|
|
42325
|
+
case 6:
|
|
42326
|
+
var value = /** @type {string} */ (reader.readString());
|
|
42327
|
+
msg.setCreatedFrom(value);
|
|
42328
|
+
break;
|
|
42329
|
+
case 7:
|
|
42330
|
+
var value = /** @type {string} */ (reader.readString());
|
|
42331
|
+
msg.setCreatedTo(value);
|
|
42332
|
+
break;
|
|
42333
|
+
case 8:
|
|
42334
|
+
var value = /** @type {string} */ (reader.readString());
|
|
42335
|
+
msg.addCurrency(value);
|
|
42336
|
+
break;
|
|
42337
|
+
case 9:
|
|
42338
|
+
var value = /** @type {string} */ (reader.readString());
|
|
42339
|
+
msg.setPlayerNickname(value);
|
|
42340
|
+
break;
|
|
42341
|
+
case 10:
|
|
42342
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt32() : [reader.readInt32()]);
|
|
42343
|
+
for (var i = 0; i < values.length; i++) {
|
|
42344
|
+
msg.addOperatorIds(values[i]);
|
|
42345
|
+
}
|
|
42346
|
+
break;
|
|
42347
|
+
case 11:
|
|
42348
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
42349
|
+
msg.setAmountMinorFrom(value);
|
|
42350
|
+
break;
|
|
42351
|
+
case 12:
|
|
42352
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
42353
|
+
msg.setAmountMinorTo(value);
|
|
42354
|
+
break;
|
|
42355
|
+
default:
|
|
42356
|
+
reader.skipField();
|
|
42357
|
+
break;
|
|
42358
|
+
}
|
|
42359
|
+
}
|
|
42360
|
+
return msg;
|
|
42361
|
+
};
|
|
42362
|
+
|
|
42363
|
+
|
|
42364
|
+
/**
|
|
42365
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
42366
|
+
* @return {!Uint8Array}
|
|
42367
|
+
*/
|
|
42368
|
+
proto.payment.CompensationSearchRequest.prototype.serializeBinary = function() {
|
|
42369
|
+
var writer = new jspb.BinaryWriter();
|
|
42370
|
+
proto.payment.CompensationSearchRequest.serializeBinaryToWriter(this, writer);
|
|
42371
|
+
return writer.getResultBuffer();
|
|
42372
|
+
};
|
|
42373
|
+
|
|
42374
|
+
|
|
42375
|
+
/**
|
|
42376
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
42377
|
+
* format), writing to the given BinaryWriter.
|
|
42378
|
+
* @param {!proto.payment.CompensationSearchRequest} message
|
|
42379
|
+
* @param {!jspb.BinaryWriter} writer
|
|
42380
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
42381
|
+
*/
|
|
42382
|
+
proto.payment.CompensationSearchRequest.serializeBinaryToWriter = function(message, writer) {
|
|
42383
|
+
var f = undefined;
|
|
42384
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
42385
|
+
if (f != null) {
|
|
42386
|
+
writer.writeInt32(
|
|
42387
|
+
1,
|
|
42388
|
+
f
|
|
42389
|
+
);
|
|
42390
|
+
}
|
|
42391
|
+
f = message.getUserIdsList();
|
|
42392
|
+
if (f.length > 0) {
|
|
42393
|
+
writer.writePackedInt32(
|
|
42394
|
+
2,
|
|
42395
|
+
f
|
|
42396
|
+
);
|
|
42397
|
+
}
|
|
42398
|
+
f = message.getCompensationTypesList();
|
|
42399
|
+
if (f.length > 0) {
|
|
42400
|
+
writer.writeRepeatedString(
|
|
42401
|
+
3,
|
|
42402
|
+
f
|
|
42403
|
+
);
|
|
42404
|
+
}
|
|
42405
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
42406
|
+
if (f != null) {
|
|
42407
|
+
writer.writeString(
|
|
42408
|
+
4,
|
|
42409
|
+
f
|
|
42410
|
+
);
|
|
42411
|
+
}
|
|
42412
|
+
f = message.getOperationStatusCodesList();
|
|
42413
|
+
if (f.length > 0) {
|
|
42414
|
+
writer.writeRepeatedString(
|
|
42415
|
+
5,
|
|
42416
|
+
f
|
|
42417
|
+
);
|
|
42418
|
+
}
|
|
42419
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
42420
|
+
if (f != null) {
|
|
42421
|
+
writer.writeString(
|
|
42422
|
+
6,
|
|
42423
|
+
f
|
|
42424
|
+
);
|
|
42425
|
+
}
|
|
42426
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
42427
|
+
if (f != null) {
|
|
42428
|
+
writer.writeString(
|
|
42429
|
+
7,
|
|
42430
|
+
f
|
|
42431
|
+
);
|
|
42432
|
+
}
|
|
42433
|
+
f = message.getCurrencyList();
|
|
42434
|
+
if (f.length > 0) {
|
|
42435
|
+
writer.writeRepeatedString(
|
|
42436
|
+
8,
|
|
42437
|
+
f
|
|
42438
|
+
);
|
|
42439
|
+
}
|
|
42440
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 9));
|
|
42441
|
+
if (f != null) {
|
|
42442
|
+
writer.writeString(
|
|
42443
|
+
9,
|
|
42444
|
+
f
|
|
42445
|
+
);
|
|
42446
|
+
}
|
|
42447
|
+
f = message.getOperatorIdsList();
|
|
42448
|
+
if (f.length > 0) {
|
|
42449
|
+
writer.writePackedInt32(
|
|
42450
|
+
10,
|
|
42451
|
+
f
|
|
42452
|
+
);
|
|
42453
|
+
}
|
|
42454
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 11));
|
|
42455
|
+
if (f != null) {
|
|
42456
|
+
writer.writeInt64(
|
|
42457
|
+
11,
|
|
42458
|
+
f
|
|
42459
|
+
);
|
|
42460
|
+
}
|
|
42461
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 12));
|
|
42462
|
+
if (f != null) {
|
|
42463
|
+
writer.writeInt64(
|
|
42464
|
+
12,
|
|
42465
|
+
f
|
|
42466
|
+
);
|
|
42467
|
+
}
|
|
42468
|
+
};
|
|
42469
|
+
|
|
42470
|
+
|
|
42471
|
+
/**
|
|
42472
|
+
* optional int32 operation_id = 1;
|
|
42473
|
+
* @return {number}
|
|
42474
|
+
*/
|
|
42475
|
+
proto.payment.CompensationSearchRequest.prototype.getOperationId = function() {
|
|
42476
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
42477
|
+
};
|
|
42478
|
+
|
|
42479
|
+
|
|
42480
|
+
/**
|
|
42481
|
+
* @param {number} value
|
|
42482
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42483
|
+
*/
|
|
42484
|
+
proto.payment.CompensationSearchRequest.prototype.setOperationId = function(value) {
|
|
42485
|
+
return jspb.Message.setField(this, 1, value);
|
|
42486
|
+
};
|
|
42487
|
+
|
|
42488
|
+
|
|
42489
|
+
/**
|
|
42490
|
+
* Clears the field making it undefined.
|
|
42491
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42492
|
+
*/
|
|
42493
|
+
proto.payment.CompensationSearchRequest.prototype.clearOperationId = function() {
|
|
42494
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
42495
|
+
};
|
|
42496
|
+
|
|
42497
|
+
|
|
42498
|
+
/**
|
|
42499
|
+
* Returns whether this field is set.
|
|
42500
|
+
* @return {boolean}
|
|
42501
|
+
*/
|
|
42502
|
+
proto.payment.CompensationSearchRequest.prototype.hasOperationId = function() {
|
|
42503
|
+
return jspb.Message.getField(this, 1) != null;
|
|
42504
|
+
};
|
|
42505
|
+
|
|
42506
|
+
|
|
42507
|
+
/**
|
|
42508
|
+
* repeated int32 user_ids = 2;
|
|
42509
|
+
* @return {!Array<number>}
|
|
42510
|
+
*/
|
|
42511
|
+
proto.payment.CompensationSearchRequest.prototype.getUserIdsList = function() {
|
|
42512
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 2));
|
|
42513
|
+
};
|
|
42514
|
+
|
|
42515
|
+
|
|
42516
|
+
/**
|
|
42517
|
+
* @param {!Array<number>} value
|
|
42518
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42519
|
+
*/
|
|
42520
|
+
proto.payment.CompensationSearchRequest.prototype.setUserIdsList = function(value) {
|
|
42521
|
+
return jspb.Message.setField(this, 2, value || []);
|
|
42522
|
+
};
|
|
42523
|
+
|
|
42524
|
+
|
|
42525
|
+
/**
|
|
42526
|
+
* @param {number} value
|
|
42527
|
+
* @param {number=} opt_index
|
|
42528
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42529
|
+
*/
|
|
42530
|
+
proto.payment.CompensationSearchRequest.prototype.addUserIds = function(value, opt_index) {
|
|
42531
|
+
return jspb.Message.addToRepeatedField(this, 2, value, opt_index);
|
|
42532
|
+
};
|
|
42533
|
+
|
|
42534
|
+
|
|
42535
|
+
/**
|
|
42536
|
+
* Clears the list making it empty but non-null.
|
|
42537
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42538
|
+
*/
|
|
42539
|
+
proto.payment.CompensationSearchRequest.prototype.clearUserIdsList = function() {
|
|
42540
|
+
return this.setUserIdsList([]);
|
|
42541
|
+
};
|
|
42542
|
+
|
|
42543
|
+
|
|
42544
|
+
/**
|
|
42545
|
+
* repeated string compensation_types = 3;
|
|
42546
|
+
* @return {!Array<string>}
|
|
42547
|
+
*/
|
|
42548
|
+
proto.payment.CompensationSearchRequest.prototype.getCompensationTypesList = function() {
|
|
42549
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 3));
|
|
42550
|
+
};
|
|
42551
|
+
|
|
42552
|
+
|
|
42553
|
+
/**
|
|
42554
|
+
* @param {!Array<string>} value
|
|
42555
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42556
|
+
*/
|
|
42557
|
+
proto.payment.CompensationSearchRequest.prototype.setCompensationTypesList = function(value) {
|
|
42558
|
+
return jspb.Message.setField(this, 3, value || []);
|
|
42559
|
+
};
|
|
42560
|
+
|
|
42561
|
+
|
|
42562
|
+
/**
|
|
42563
|
+
* @param {string} value
|
|
42564
|
+
* @param {number=} opt_index
|
|
42565
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42566
|
+
*/
|
|
42567
|
+
proto.payment.CompensationSearchRequest.prototype.addCompensationTypes = function(value, opt_index) {
|
|
42568
|
+
return jspb.Message.addToRepeatedField(this, 3, value, opt_index);
|
|
42569
|
+
};
|
|
42570
|
+
|
|
42571
|
+
|
|
42572
|
+
/**
|
|
42573
|
+
* Clears the list making it empty but non-null.
|
|
42574
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42575
|
+
*/
|
|
42576
|
+
proto.payment.CompensationSearchRequest.prototype.clearCompensationTypesList = function() {
|
|
42577
|
+
return this.setCompensationTypesList([]);
|
|
42578
|
+
};
|
|
42579
|
+
|
|
42580
|
+
|
|
42581
|
+
/**
|
|
42582
|
+
* optional string transaction_code = 4;
|
|
42583
|
+
* @return {string}
|
|
42584
|
+
*/
|
|
42585
|
+
proto.payment.CompensationSearchRequest.prototype.getTransactionCode = function() {
|
|
42586
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
42587
|
+
};
|
|
42588
|
+
|
|
42589
|
+
|
|
42590
|
+
/**
|
|
42591
|
+
* @param {string} value
|
|
42592
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42593
|
+
*/
|
|
42594
|
+
proto.payment.CompensationSearchRequest.prototype.setTransactionCode = function(value) {
|
|
42595
|
+
return jspb.Message.setField(this, 4, value);
|
|
42596
|
+
};
|
|
42597
|
+
|
|
42598
|
+
|
|
42599
|
+
/**
|
|
42600
|
+
* Clears the field making it undefined.
|
|
42601
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42602
|
+
*/
|
|
42603
|
+
proto.payment.CompensationSearchRequest.prototype.clearTransactionCode = function() {
|
|
42604
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
42605
|
+
};
|
|
42606
|
+
|
|
42607
|
+
|
|
42608
|
+
/**
|
|
42609
|
+
* Returns whether this field is set.
|
|
42610
|
+
* @return {boolean}
|
|
42611
|
+
*/
|
|
42612
|
+
proto.payment.CompensationSearchRequest.prototype.hasTransactionCode = function() {
|
|
42613
|
+
return jspb.Message.getField(this, 4) != null;
|
|
42614
|
+
};
|
|
42615
|
+
|
|
42616
|
+
|
|
42617
|
+
/**
|
|
42618
|
+
* repeated string operation_status_codes = 5;
|
|
42619
|
+
* @return {!Array<string>}
|
|
42620
|
+
*/
|
|
42621
|
+
proto.payment.CompensationSearchRequest.prototype.getOperationStatusCodesList = function() {
|
|
42622
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 5));
|
|
42623
|
+
};
|
|
42624
|
+
|
|
42625
|
+
|
|
42626
|
+
/**
|
|
42627
|
+
* @param {!Array<string>} value
|
|
42628
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42629
|
+
*/
|
|
42630
|
+
proto.payment.CompensationSearchRequest.prototype.setOperationStatusCodesList = function(value) {
|
|
42631
|
+
return jspb.Message.setField(this, 5, value || []);
|
|
42632
|
+
};
|
|
42633
|
+
|
|
42634
|
+
|
|
42635
|
+
/**
|
|
42636
|
+
* @param {string} value
|
|
42637
|
+
* @param {number=} opt_index
|
|
42638
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42639
|
+
*/
|
|
42640
|
+
proto.payment.CompensationSearchRequest.prototype.addOperationStatusCodes = function(value, opt_index) {
|
|
42641
|
+
return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
|
|
42642
|
+
};
|
|
42643
|
+
|
|
42644
|
+
|
|
42645
|
+
/**
|
|
42646
|
+
* Clears the list making it empty but non-null.
|
|
42647
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42648
|
+
*/
|
|
42649
|
+
proto.payment.CompensationSearchRequest.prototype.clearOperationStatusCodesList = function() {
|
|
42650
|
+
return this.setOperationStatusCodesList([]);
|
|
42651
|
+
};
|
|
42652
|
+
|
|
42653
|
+
|
|
42654
|
+
/**
|
|
42655
|
+
* optional string created_from = 6;
|
|
42656
|
+
* @return {string}
|
|
42657
|
+
*/
|
|
42658
|
+
proto.payment.CompensationSearchRequest.prototype.getCreatedFrom = function() {
|
|
42659
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
42660
|
+
};
|
|
42661
|
+
|
|
42662
|
+
|
|
42663
|
+
/**
|
|
42664
|
+
* @param {string} value
|
|
42665
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42666
|
+
*/
|
|
42667
|
+
proto.payment.CompensationSearchRequest.prototype.setCreatedFrom = function(value) {
|
|
42668
|
+
return jspb.Message.setField(this, 6, value);
|
|
42669
|
+
};
|
|
42670
|
+
|
|
42671
|
+
|
|
42672
|
+
/**
|
|
42673
|
+
* Clears the field making it undefined.
|
|
42674
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42675
|
+
*/
|
|
42676
|
+
proto.payment.CompensationSearchRequest.prototype.clearCreatedFrom = function() {
|
|
42677
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
42678
|
+
};
|
|
42679
|
+
|
|
42680
|
+
|
|
42681
|
+
/**
|
|
42682
|
+
* Returns whether this field is set.
|
|
42683
|
+
* @return {boolean}
|
|
42684
|
+
*/
|
|
42685
|
+
proto.payment.CompensationSearchRequest.prototype.hasCreatedFrom = function() {
|
|
42686
|
+
return jspb.Message.getField(this, 6) != null;
|
|
42687
|
+
};
|
|
42688
|
+
|
|
42689
|
+
|
|
42690
|
+
/**
|
|
42691
|
+
* optional string created_to = 7;
|
|
42692
|
+
* @return {string}
|
|
42693
|
+
*/
|
|
42694
|
+
proto.payment.CompensationSearchRequest.prototype.getCreatedTo = function() {
|
|
42695
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
42696
|
+
};
|
|
42697
|
+
|
|
42698
|
+
|
|
42699
|
+
/**
|
|
42700
|
+
* @param {string} value
|
|
42701
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42702
|
+
*/
|
|
42703
|
+
proto.payment.CompensationSearchRequest.prototype.setCreatedTo = function(value) {
|
|
42704
|
+
return jspb.Message.setField(this, 7, value);
|
|
42705
|
+
};
|
|
42706
|
+
|
|
42707
|
+
|
|
42708
|
+
/**
|
|
42709
|
+
* Clears the field making it undefined.
|
|
42710
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42711
|
+
*/
|
|
42712
|
+
proto.payment.CompensationSearchRequest.prototype.clearCreatedTo = function() {
|
|
42713
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
42714
|
+
};
|
|
42715
|
+
|
|
42716
|
+
|
|
42717
|
+
/**
|
|
42718
|
+
* Returns whether this field is set.
|
|
42719
|
+
* @return {boolean}
|
|
42720
|
+
*/
|
|
42721
|
+
proto.payment.CompensationSearchRequest.prototype.hasCreatedTo = function() {
|
|
42722
|
+
return jspb.Message.getField(this, 7) != null;
|
|
42723
|
+
};
|
|
42724
|
+
|
|
42725
|
+
|
|
42726
|
+
/**
|
|
42727
|
+
* repeated string currency = 8;
|
|
42728
|
+
* @return {!Array<string>}
|
|
42729
|
+
*/
|
|
42730
|
+
proto.payment.CompensationSearchRequest.prototype.getCurrencyList = function() {
|
|
42731
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 8));
|
|
42732
|
+
};
|
|
42733
|
+
|
|
42734
|
+
|
|
42735
|
+
/**
|
|
42736
|
+
* @param {!Array<string>} value
|
|
42737
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42738
|
+
*/
|
|
42739
|
+
proto.payment.CompensationSearchRequest.prototype.setCurrencyList = function(value) {
|
|
42740
|
+
return jspb.Message.setField(this, 8, value || []);
|
|
42741
|
+
};
|
|
42742
|
+
|
|
42743
|
+
|
|
42744
|
+
/**
|
|
42745
|
+
* @param {string} value
|
|
42746
|
+
* @param {number=} opt_index
|
|
42747
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42748
|
+
*/
|
|
42749
|
+
proto.payment.CompensationSearchRequest.prototype.addCurrency = function(value, opt_index) {
|
|
42750
|
+
return jspb.Message.addToRepeatedField(this, 8, value, opt_index);
|
|
42751
|
+
};
|
|
42752
|
+
|
|
42753
|
+
|
|
42754
|
+
/**
|
|
42755
|
+
* Clears the list making it empty but non-null.
|
|
42756
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42757
|
+
*/
|
|
42758
|
+
proto.payment.CompensationSearchRequest.prototype.clearCurrencyList = function() {
|
|
42759
|
+
return this.setCurrencyList([]);
|
|
42760
|
+
};
|
|
42761
|
+
|
|
42762
|
+
|
|
42763
|
+
/**
|
|
42764
|
+
* optional string player_nickname = 9;
|
|
42765
|
+
* @return {string}
|
|
42766
|
+
*/
|
|
42767
|
+
proto.payment.CompensationSearchRequest.prototype.getPlayerNickname = function() {
|
|
42768
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
42769
|
+
};
|
|
42770
|
+
|
|
42771
|
+
|
|
42772
|
+
/**
|
|
42773
|
+
* @param {string} value
|
|
42774
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42775
|
+
*/
|
|
42776
|
+
proto.payment.CompensationSearchRequest.prototype.setPlayerNickname = function(value) {
|
|
42777
|
+
return jspb.Message.setField(this, 9, value);
|
|
42778
|
+
};
|
|
42779
|
+
|
|
42780
|
+
|
|
42781
|
+
/**
|
|
42782
|
+
* Clears the field making it undefined.
|
|
42783
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42784
|
+
*/
|
|
42785
|
+
proto.payment.CompensationSearchRequest.prototype.clearPlayerNickname = function() {
|
|
42786
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
42787
|
+
};
|
|
42788
|
+
|
|
42789
|
+
|
|
42790
|
+
/**
|
|
42791
|
+
* Returns whether this field is set.
|
|
42792
|
+
* @return {boolean}
|
|
42793
|
+
*/
|
|
42794
|
+
proto.payment.CompensationSearchRequest.prototype.hasPlayerNickname = function() {
|
|
42795
|
+
return jspb.Message.getField(this, 9) != null;
|
|
42796
|
+
};
|
|
42797
|
+
|
|
42798
|
+
|
|
42799
|
+
/**
|
|
42800
|
+
* repeated int32 operator_ids = 10;
|
|
42801
|
+
* @return {!Array<number>}
|
|
42802
|
+
*/
|
|
42803
|
+
proto.payment.CompensationSearchRequest.prototype.getOperatorIdsList = function() {
|
|
42804
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 10));
|
|
42805
|
+
};
|
|
42806
|
+
|
|
42807
|
+
|
|
42808
|
+
/**
|
|
42809
|
+
* @param {!Array<number>} value
|
|
42810
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42811
|
+
*/
|
|
42812
|
+
proto.payment.CompensationSearchRequest.prototype.setOperatorIdsList = function(value) {
|
|
42813
|
+
return jspb.Message.setField(this, 10, value || []);
|
|
42814
|
+
};
|
|
42815
|
+
|
|
42816
|
+
|
|
42817
|
+
/**
|
|
42818
|
+
* @param {number} value
|
|
42819
|
+
* @param {number=} opt_index
|
|
42820
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42821
|
+
*/
|
|
42822
|
+
proto.payment.CompensationSearchRequest.prototype.addOperatorIds = function(value, opt_index) {
|
|
42823
|
+
return jspb.Message.addToRepeatedField(this, 10, value, opt_index);
|
|
42824
|
+
};
|
|
42825
|
+
|
|
42826
|
+
|
|
42827
|
+
/**
|
|
42828
|
+
* Clears the list making it empty but non-null.
|
|
42829
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42830
|
+
*/
|
|
42831
|
+
proto.payment.CompensationSearchRequest.prototype.clearOperatorIdsList = function() {
|
|
42832
|
+
return this.setOperatorIdsList([]);
|
|
42833
|
+
};
|
|
42834
|
+
|
|
42835
|
+
|
|
42836
|
+
/**
|
|
42837
|
+
* optional int64 amount_minor_from = 11;
|
|
42838
|
+
* @return {number}
|
|
42839
|
+
*/
|
|
42840
|
+
proto.payment.CompensationSearchRequest.prototype.getAmountMinorFrom = function() {
|
|
42841
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 11, 0));
|
|
42842
|
+
};
|
|
42843
|
+
|
|
42844
|
+
|
|
42845
|
+
/**
|
|
42846
|
+
* @param {number} value
|
|
42847
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42848
|
+
*/
|
|
42849
|
+
proto.payment.CompensationSearchRequest.prototype.setAmountMinorFrom = function(value) {
|
|
42850
|
+
return jspb.Message.setField(this, 11, value);
|
|
42851
|
+
};
|
|
42852
|
+
|
|
42853
|
+
|
|
42854
|
+
/**
|
|
42855
|
+
* Clears the field making it undefined.
|
|
42856
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42857
|
+
*/
|
|
42858
|
+
proto.payment.CompensationSearchRequest.prototype.clearAmountMinorFrom = function() {
|
|
42859
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
42860
|
+
};
|
|
42861
|
+
|
|
42862
|
+
|
|
42863
|
+
/**
|
|
42864
|
+
* Returns whether this field is set.
|
|
42865
|
+
* @return {boolean}
|
|
42866
|
+
*/
|
|
42867
|
+
proto.payment.CompensationSearchRequest.prototype.hasAmountMinorFrom = function() {
|
|
42868
|
+
return jspb.Message.getField(this, 11) != null;
|
|
42869
|
+
};
|
|
42870
|
+
|
|
42871
|
+
|
|
42872
|
+
/**
|
|
42873
|
+
* optional int64 amount_minor_to = 12;
|
|
42874
|
+
* @return {number}
|
|
42875
|
+
*/
|
|
42876
|
+
proto.payment.CompensationSearchRequest.prototype.getAmountMinorTo = function() {
|
|
42877
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
|
42878
|
+
};
|
|
42879
|
+
|
|
42880
|
+
|
|
42881
|
+
/**
|
|
42882
|
+
* @param {number} value
|
|
42883
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42884
|
+
*/
|
|
42885
|
+
proto.payment.CompensationSearchRequest.prototype.setAmountMinorTo = function(value) {
|
|
42886
|
+
return jspb.Message.setField(this, 12, value);
|
|
42887
|
+
};
|
|
42888
|
+
|
|
42889
|
+
|
|
42890
|
+
/**
|
|
42891
|
+
* Clears the field making it undefined.
|
|
42892
|
+
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42893
|
+
*/
|
|
42894
|
+
proto.payment.CompensationSearchRequest.prototype.clearAmountMinorTo = function() {
|
|
42895
|
+
return jspb.Message.setField(this, 12, undefined);
|
|
42896
|
+
};
|
|
42897
|
+
|
|
42898
|
+
|
|
42899
|
+
/**
|
|
42900
|
+
* Returns whether this field is set.
|
|
42901
|
+
* @return {boolean}
|
|
42902
|
+
*/
|
|
42903
|
+
proto.payment.CompensationSearchRequest.prototype.hasAmountMinorTo = function() {
|
|
42904
|
+
return jspb.Message.getField(this, 12) != null;
|
|
42905
|
+
};
|
|
42906
|
+
|
|
42907
|
+
|
|
42908
|
+
|
|
42909
|
+
|
|
42910
|
+
|
|
42911
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
42912
|
+
/**
|
|
42913
|
+
* Creates an object representation of this proto.
|
|
42914
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
42915
|
+
* Optional fields that are not set will be set to undefined.
|
|
42916
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
42917
|
+
* For the list of reserved names please see:
|
|
42918
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
42919
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
42920
|
+
* JSPB instance for transitional soy proto support:
|
|
42921
|
+
* http://goto/soy-param-migration
|
|
42922
|
+
* @return {!Object}
|
|
42923
|
+
*/
|
|
42924
|
+
proto.payment.CompensationItem.prototype.toObject = function(opt_includeInstance) {
|
|
42925
|
+
return proto.payment.CompensationItem.toObject(opt_includeInstance, this);
|
|
42926
|
+
};
|
|
42927
|
+
|
|
42928
|
+
|
|
42929
|
+
/**
|
|
42930
|
+
* Static version of the {@see toObject} method.
|
|
42931
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
42932
|
+
* the JSPB instance for transitional soy proto support:
|
|
42933
|
+
* http://goto/soy-param-migration
|
|
42934
|
+
* @param {!proto.payment.CompensationItem} msg The msg instance to transform.
|
|
42935
|
+
* @return {!Object}
|
|
42936
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
42937
|
+
*/
|
|
42938
|
+
proto.payment.CompensationItem.toObject = function(includeInstance, msg) {
|
|
42939
|
+
var f, obj = {
|
|
42940
|
+
operationId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
42941
|
+
operationPublicId: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
42942
|
+
userId: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
42943
|
+
compensationType: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
42944
|
+
transactionCode: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
42945
|
+
amountMinor: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
42946
|
+
currency: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
42947
|
+
currencyScale: jspb.Message.getFieldWithDefault(msg, 8, 0),
|
|
42948
|
+
wagerMultiplier: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
42949
|
+
promoOrBonusId: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
42950
|
+
internalComment: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
42951
|
+
operatorId: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
42952
|
+
statusCode: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
42953
|
+
createdAt: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
42954
|
+
completedAt: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
42955
|
+
playerNickname: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
42956
|
+
playerEmail: jspb.Message.getFieldWithDefault(msg, 17, ""),
|
|
42957
|
+
operatorName: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
42958
|
+
operatorEmail: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
42959
|
+
userBonusId: jspb.Message.getFieldWithDefault(msg, 20, 0),
|
|
42960
|
+
bonusId: jspb.Message.getFieldWithDefault(msg, 21, 0)
|
|
42961
|
+
};
|
|
42962
|
+
|
|
42963
|
+
if (includeInstance) {
|
|
42964
|
+
obj.$jspbMessageInstance = msg;
|
|
42965
|
+
}
|
|
42966
|
+
return obj;
|
|
42967
|
+
};
|
|
42968
|
+
}
|
|
42969
|
+
|
|
42970
|
+
|
|
42971
|
+
/**
|
|
42972
|
+
* Deserializes binary data (in protobuf wire format).
|
|
42973
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
42974
|
+
* @return {!proto.payment.CompensationItem}
|
|
42975
|
+
*/
|
|
42976
|
+
proto.payment.CompensationItem.deserializeBinary = function(bytes) {
|
|
42977
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
42978
|
+
var msg = new proto.payment.CompensationItem;
|
|
42979
|
+
return proto.payment.CompensationItem.deserializeBinaryFromReader(msg, reader);
|
|
42980
|
+
};
|
|
42981
|
+
|
|
42982
|
+
|
|
42983
|
+
/**
|
|
42984
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
42985
|
+
* given reader into the given message object.
|
|
42986
|
+
* @param {!proto.payment.CompensationItem} msg The message object to deserialize into.
|
|
42987
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
42988
|
+
* @return {!proto.payment.CompensationItem}
|
|
42989
|
+
*/
|
|
42990
|
+
proto.payment.CompensationItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
42991
|
+
while (reader.nextField()) {
|
|
42992
|
+
if (reader.isEndGroup()) {
|
|
42993
|
+
break;
|
|
42994
|
+
}
|
|
42995
|
+
var field = reader.getFieldNumber();
|
|
42996
|
+
switch (field) {
|
|
42997
|
+
case 1:
|
|
42998
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
42999
|
+
msg.setOperationId(value);
|
|
43000
|
+
break;
|
|
43001
|
+
case 2:
|
|
43002
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43003
|
+
msg.setOperationPublicId(value);
|
|
43004
|
+
break;
|
|
43005
|
+
case 3:
|
|
43006
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
43007
|
+
msg.setUserId(value);
|
|
43008
|
+
break;
|
|
43009
|
+
case 4:
|
|
43010
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43011
|
+
msg.setCompensationType(value);
|
|
43012
|
+
break;
|
|
43013
|
+
case 5:
|
|
43014
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43015
|
+
msg.setTransactionCode(value);
|
|
43016
|
+
break;
|
|
43017
|
+
case 6:
|
|
43018
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
43019
|
+
msg.setAmountMinor(value);
|
|
43020
|
+
break;
|
|
43021
|
+
case 7:
|
|
43022
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43023
|
+
msg.setCurrency(value);
|
|
43024
|
+
break;
|
|
43025
|
+
case 8:
|
|
43026
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
43027
|
+
msg.setCurrencyScale(value);
|
|
43028
|
+
break;
|
|
43029
|
+
case 9:
|
|
43030
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43031
|
+
msg.setWagerMultiplier(value);
|
|
43032
|
+
break;
|
|
43033
|
+
case 10:
|
|
43034
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43035
|
+
msg.setPromoOrBonusId(value);
|
|
43036
|
+
break;
|
|
43037
|
+
case 11:
|
|
43038
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43039
|
+
msg.setInternalComment(value);
|
|
43040
|
+
break;
|
|
43041
|
+
case 12:
|
|
43042
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
43043
|
+
msg.setOperatorId(value);
|
|
43044
|
+
break;
|
|
43045
|
+
case 13:
|
|
43046
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43047
|
+
msg.setStatusCode(value);
|
|
43048
|
+
break;
|
|
43049
|
+
case 14:
|
|
43050
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43051
|
+
msg.setCreatedAt(value);
|
|
43052
|
+
break;
|
|
43053
|
+
case 15:
|
|
43054
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43055
|
+
msg.setCompletedAt(value);
|
|
43056
|
+
break;
|
|
43057
|
+
case 16:
|
|
43058
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43059
|
+
msg.setPlayerNickname(value);
|
|
43060
|
+
break;
|
|
43061
|
+
case 17:
|
|
43062
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43063
|
+
msg.setPlayerEmail(value);
|
|
43064
|
+
break;
|
|
43065
|
+
case 18:
|
|
43066
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43067
|
+
msg.setOperatorName(value);
|
|
43068
|
+
break;
|
|
43069
|
+
case 19:
|
|
43070
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43071
|
+
msg.setOperatorEmail(value);
|
|
43072
|
+
break;
|
|
43073
|
+
case 20:
|
|
43074
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
43075
|
+
msg.setUserBonusId(value);
|
|
43076
|
+
break;
|
|
43077
|
+
case 21:
|
|
43078
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
43079
|
+
msg.setBonusId(value);
|
|
43080
|
+
break;
|
|
43081
|
+
default:
|
|
43082
|
+
reader.skipField();
|
|
43083
|
+
break;
|
|
43084
|
+
}
|
|
43085
|
+
}
|
|
43086
|
+
return msg;
|
|
43087
|
+
};
|
|
43088
|
+
|
|
43089
|
+
|
|
43090
|
+
/**
|
|
43091
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
43092
|
+
* @return {!Uint8Array}
|
|
43093
|
+
*/
|
|
43094
|
+
proto.payment.CompensationItem.prototype.serializeBinary = function() {
|
|
43095
|
+
var writer = new jspb.BinaryWriter();
|
|
43096
|
+
proto.payment.CompensationItem.serializeBinaryToWriter(this, writer);
|
|
43097
|
+
return writer.getResultBuffer();
|
|
43098
|
+
};
|
|
43099
|
+
|
|
43100
|
+
|
|
43101
|
+
/**
|
|
43102
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
43103
|
+
* format), writing to the given BinaryWriter.
|
|
43104
|
+
* @param {!proto.payment.CompensationItem} message
|
|
43105
|
+
* @param {!jspb.BinaryWriter} writer
|
|
43106
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
43107
|
+
*/
|
|
43108
|
+
proto.payment.CompensationItem.serializeBinaryToWriter = function(message, writer) {
|
|
43109
|
+
var f = undefined;
|
|
43110
|
+
f = message.getOperationId();
|
|
43111
|
+
if (f !== 0) {
|
|
43112
|
+
writer.writeInt32(
|
|
43113
|
+
1,
|
|
43114
|
+
f
|
|
43115
|
+
);
|
|
43116
|
+
}
|
|
43117
|
+
f = message.getOperationPublicId();
|
|
43118
|
+
if (f.length > 0) {
|
|
43119
|
+
writer.writeString(
|
|
43120
|
+
2,
|
|
43121
|
+
f
|
|
43122
|
+
);
|
|
43123
|
+
}
|
|
43124
|
+
f = message.getUserId();
|
|
43125
|
+
if (f !== 0) {
|
|
43126
|
+
writer.writeInt32(
|
|
43127
|
+
3,
|
|
43128
|
+
f
|
|
43129
|
+
);
|
|
43130
|
+
}
|
|
43131
|
+
f = message.getCompensationType();
|
|
43132
|
+
if (f.length > 0) {
|
|
43133
|
+
writer.writeString(
|
|
43134
|
+
4,
|
|
43135
|
+
f
|
|
43136
|
+
);
|
|
43137
|
+
}
|
|
43138
|
+
f = message.getTransactionCode();
|
|
43139
|
+
if (f.length > 0) {
|
|
43140
|
+
writer.writeString(
|
|
43141
|
+
5,
|
|
43142
|
+
f
|
|
43143
|
+
);
|
|
43144
|
+
}
|
|
43145
|
+
f = message.getAmountMinor();
|
|
43146
|
+
if (f !== 0) {
|
|
43147
|
+
writer.writeInt64(
|
|
43148
|
+
6,
|
|
43149
|
+
f
|
|
43150
|
+
);
|
|
43151
|
+
}
|
|
43152
|
+
f = message.getCurrency();
|
|
43153
|
+
if (f.length > 0) {
|
|
43154
|
+
writer.writeString(
|
|
43155
|
+
7,
|
|
43156
|
+
f
|
|
43157
|
+
);
|
|
43158
|
+
}
|
|
43159
|
+
f = message.getCurrencyScale();
|
|
43160
|
+
if (f !== 0) {
|
|
43161
|
+
writer.writeInt32(
|
|
43162
|
+
8,
|
|
43163
|
+
f
|
|
43164
|
+
);
|
|
43165
|
+
}
|
|
43166
|
+
f = message.getWagerMultiplier();
|
|
43167
|
+
if (f.length > 0) {
|
|
43168
|
+
writer.writeString(
|
|
43169
|
+
9,
|
|
43170
|
+
f
|
|
43171
|
+
);
|
|
43172
|
+
}
|
|
43173
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 10));
|
|
43174
|
+
if (f != null) {
|
|
43175
|
+
writer.writeString(
|
|
43176
|
+
10,
|
|
43177
|
+
f
|
|
43178
|
+
);
|
|
43179
|
+
}
|
|
43180
|
+
f = message.getInternalComment();
|
|
43181
|
+
if (f.length > 0) {
|
|
43182
|
+
writer.writeString(
|
|
43183
|
+
11,
|
|
43184
|
+
f
|
|
43185
|
+
);
|
|
43186
|
+
}
|
|
43187
|
+
f = message.getOperatorId();
|
|
43188
|
+
if (f !== 0) {
|
|
43189
|
+
writer.writeInt32(
|
|
43190
|
+
12,
|
|
43191
|
+
f
|
|
43192
|
+
);
|
|
43193
|
+
}
|
|
43194
|
+
f = message.getStatusCode();
|
|
43195
|
+
if (f.length > 0) {
|
|
43196
|
+
writer.writeString(
|
|
43197
|
+
13,
|
|
43198
|
+
f
|
|
43199
|
+
);
|
|
43200
|
+
}
|
|
43201
|
+
f = message.getCreatedAt();
|
|
43202
|
+
if (f.length > 0) {
|
|
43203
|
+
writer.writeString(
|
|
43204
|
+
14,
|
|
43205
|
+
f
|
|
43206
|
+
);
|
|
43207
|
+
}
|
|
43208
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 15));
|
|
43209
|
+
if (f != null) {
|
|
43210
|
+
writer.writeString(
|
|
43211
|
+
15,
|
|
43212
|
+
f
|
|
43213
|
+
);
|
|
43214
|
+
}
|
|
43215
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 16));
|
|
43216
|
+
if (f != null) {
|
|
43217
|
+
writer.writeString(
|
|
43218
|
+
16,
|
|
43219
|
+
f
|
|
43220
|
+
);
|
|
43221
|
+
}
|
|
43222
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 17));
|
|
43223
|
+
if (f != null) {
|
|
43224
|
+
writer.writeString(
|
|
43225
|
+
17,
|
|
43226
|
+
f
|
|
43227
|
+
);
|
|
43228
|
+
}
|
|
43229
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 18));
|
|
43230
|
+
if (f != null) {
|
|
43231
|
+
writer.writeString(
|
|
43232
|
+
18,
|
|
43233
|
+
f
|
|
43234
|
+
);
|
|
43235
|
+
}
|
|
43236
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 19));
|
|
43237
|
+
if (f != null) {
|
|
43238
|
+
writer.writeString(
|
|
43239
|
+
19,
|
|
43240
|
+
f
|
|
43241
|
+
);
|
|
43242
|
+
}
|
|
43243
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 20));
|
|
43244
|
+
if (f != null) {
|
|
43245
|
+
writer.writeInt32(
|
|
43246
|
+
20,
|
|
43247
|
+
f
|
|
43248
|
+
);
|
|
43249
|
+
}
|
|
43250
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 21));
|
|
43251
|
+
if (f != null) {
|
|
43252
|
+
writer.writeInt32(
|
|
43253
|
+
21,
|
|
43254
|
+
f
|
|
43255
|
+
);
|
|
43256
|
+
}
|
|
43257
|
+
};
|
|
43258
|
+
|
|
43259
|
+
|
|
43260
|
+
/**
|
|
43261
|
+
* optional int32 operation_id = 1;
|
|
43262
|
+
* @return {number}
|
|
43263
|
+
*/
|
|
43264
|
+
proto.payment.CompensationItem.prototype.getOperationId = function() {
|
|
43265
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
43266
|
+
};
|
|
43267
|
+
|
|
43268
|
+
|
|
43269
|
+
/**
|
|
43270
|
+
* @param {number} value
|
|
43271
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43272
|
+
*/
|
|
43273
|
+
proto.payment.CompensationItem.prototype.setOperationId = function(value) {
|
|
43274
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
43275
|
+
};
|
|
43276
|
+
|
|
43277
|
+
|
|
43278
|
+
/**
|
|
43279
|
+
* optional string operation_public_id = 2;
|
|
43280
|
+
* @return {string}
|
|
43281
|
+
*/
|
|
43282
|
+
proto.payment.CompensationItem.prototype.getOperationPublicId = function() {
|
|
43283
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
43284
|
+
};
|
|
43285
|
+
|
|
43286
|
+
|
|
43287
|
+
/**
|
|
43288
|
+
* @param {string} value
|
|
43289
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43290
|
+
*/
|
|
43291
|
+
proto.payment.CompensationItem.prototype.setOperationPublicId = function(value) {
|
|
43292
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
43293
|
+
};
|
|
43294
|
+
|
|
43295
|
+
|
|
43296
|
+
/**
|
|
43297
|
+
* optional int32 user_id = 3;
|
|
43298
|
+
* @return {number}
|
|
43299
|
+
*/
|
|
43300
|
+
proto.payment.CompensationItem.prototype.getUserId = function() {
|
|
43301
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
43302
|
+
};
|
|
43303
|
+
|
|
43304
|
+
|
|
43305
|
+
/**
|
|
43306
|
+
* @param {number} value
|
|
43307
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43308
|
+
*/
|
|
43309
|
+
proto.payment.CompensationItem.prototype.setUserId = function(value) {
|
|
43310
|
+
return jspb.Message.setProto3IntField(this, 3, value);
|
|
43311
|
+
};
|
|
43312
|
+
|
|
43313
|
+
|
|
43314
|
+
/**
|
|
43315
|
+
* optional string compensation_type = 4;
|
|
43316
|
+
* @return {string}
|
|
43317
|
+
*/
|
|
43318
|
+
proto.payment.CompensationItem.prototype.getCompensationType = function() {
|
|
43319
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
43320
|
+
};
|
|
43321
|
+
|
|
43322
|
+
|
|
43323
|
+
/**
|
|
43324
|
+
* @param {string} value
|
|
43325
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43326
|
+
*/
|
|
43327
|
+
proto.payment.CompensationItem.prototype.setCompensationType = function(value) {
|
|
43328
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
43329
|
+
};
|
|
43330
|
+
|
|
43331
|
+
|
|
43332
|
+
/**
|
|
43333
|
+
* optional string transaction_code = 5;
|
|
43334
|
+
* @return {string}
|
|
43335
|
+
*/
|
|
43336
|
+
proto.payment.CompensationItem.prototype.getTransactionCode = function() {
|
|
43337
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
43338
|
+
};
|
|
43339
|
+
|
|
43340
|
+
|
|
43341
|
+
/**
|
|
43342
|
+
* @param {string} value
|
|
43343
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43344
|
+
*/
|
|
43345
|
+
proto.payment.CompensationItem.prototype.setTransactionCode = function(value) {
|
|
43346
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
43347
|
+
};
|
|
43348
|
+
|
|
43349
|
+
|
|
43350
|
+
/**
|
|
43351
|
+
* optional int64 amount_minor = 6;
|
|
43352
|
+
* @return {number}
|
|
43353
|
+
*/
|
|
43354
|
+
proto.payment.CompensationItem.prototype.getAmountMinor = function() {
|
|
43355
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
43356
|
+
};
|
|
43357
|
+
|
|
43358
|
+
|
|
43359
|
+
/**
|
|
43360
|
+
* @param {number} value
|
|
43361
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43362
|
+
*/
|
|
43363
|
+
proto.payment.CompensationItem.prototype.setAmountMinor = function(value) {
|
|
43364
|
+
return jspb.Message.setProto3IntField(this, 6, value);
|
|
43365
|
+
};
|
|
43366
|
+
|
|
43367
|
+
|
|
43368
|
+
/**
|
|
43369
|
+
* optional string currency = 7;
|
|
43370
|
+
* @return {string}
|
|
43371
|
+
*/
|
|
43372
|
+
proto.payment.CompensationItem.prototype.getCurrency = function() {
|
|
43373
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
43374
|
+
};
|
|
43375
|
+
|
|
43376
|
+
|
|
43377
|
+
/**
|
|
43378
|
+
* @param {string} value
|
|
43379
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43380
|
+
*/
|
|
43381
|
+
proto.payment.CompensationItem.prototype.setCurrency = function(value) {
|
|
43382
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
43383
|
+
};
|
|
43384
|
+
|
|
43385
|
+
|
|
43386
|
+
/**
|
|
43387
|
+
* optional int32 currency_scale = 8;
|
|
43388
|
+
* @return {number}
|
|
43389
|
+
*/
|
|
43390
|
+
proto.payment.CompensationItem.prototype.getCurrencyScale = function() {
|
|
43391
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
|
|
43392
|
+
};
|
|
43393
|
+
|
|
43394
|
+
|
|
43395
|
+
/**
|
|
43396
|
+
* @param {number} value
|
|
43397
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43398
|
+
*/
|
|
43399
|
+
proto.payment.CompensationItem.prototype.setCurrencyScale = function(value) {
|
|
43400
|
+
return jspb.Message.setProto3IntField(this, 8, value);
|
|
43401
|
+
};
|
|
43402
|
+
|
|
43403
|
+
|
|
43404
|
+
/**
|
|
43405
|
+
* optional string wager_multiplier = 9;
|
|
43406
|
+
* @return {string}
|
|
43407
|
+
*/
|
|
43408
|
+
proto.payment.CompensationItem.prototype.getWagerMultiplier = function() {
|
|
43409
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
43410
|
+
};
|
|
43411
|
+
|
|
43412
|
+
|
|
43413
|
+
/**
|
|
43414
|
+
* @param {string} value
|
|
43415
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43416
|
+
*/
|
|
43417
|
+
proto.payment.CompensationItem.prototype.setWagerMultiplier = function(value) {
|
|
43418
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
43419
|
+
};
|
|
43420
|
+
|
|
43421
|
+
|
|
43422
|
+
/**
|
|
43423
|
+
* optional string promo_or_bonus_id = 10;
|
|
43424
|
+
* @return {string}
|
|
43425
|
+
*/
|
|
43426
|
+
proto.payment.CompensationItem.prototype.getPromoOrBonusId = function() {
|
|
43427
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
43428
|
+
};
|
|
43429
|
+
|
|
43430
|
+
|
|
43431
|
+
/**
|
|
43432
|
+
* @param {string} value
|
|
43433
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43434
|
+
*/
|
|
43435
|
+
proto.payment.CompensationItem.prototype.setPromoOrBonusId = function(value) {
|
|
43436
|
+
return jspb.Message.setField(this, 10, value);
|
|
43437
|
+
};
|
|
43438
|
+
|
|
43439
|
+
|
|
43440
|
+
/**
|
|
43441
|
+
* Clears the field making it undefined.
|
|
43442
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43443
|
+
*/
|
|
43444
|
+
proto.payment.CompensationItem.prototype.clearPromoOrBonusId = function() {
|
|
43445
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
43446
|
+
};
|
|
43447
|
+
|
|
43448
|
+
|
|
43449
|
+
/**
|
|
43450
|
+
* Returns whether this field is set.
|
|
43451
|
+
* @return {boolean}
|
|
43452
|
+
*/
|
|
43453
|
+
proto.payment.CompensationItem.prototype.hasPromoOrBonusId = function() {
|
|
43454
|
+
return jspb.Message.getField(this, 10) != null;
|
|
43455
|
+
};
|
|
43456
|
+
|
|
43457
|
+
|
|
43458
|
+
/**
|
|
43459
|
+
* optional string internal_comment = 11;
|
|
43460
|
+
* @return {string}
|
|
43461
|
+
*/
|
|
43462
|
+
proto.payment.CompensationItem.prototype.getInternalComment = function() {
|
|
43463
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
43464
|
+
};
|
|
43465
|
+
|
|
43466
|
+
|
|
43467
|
+
/**
|
|
43468
|
+
* @param {string} value
|
|
43469
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43470
|
+
*/
|
|
43471
|
+
proto.payment.CompensationItem.prototype.setInternalComment = function(value) {
|
|
43472
|
+
return jspb.Message.setProto3StringField(this, 11, value);
|
|
43473
|
+
};
|
|
43474
|
+
|
|
43475
|
+
|
|
43476
|
+
/**
|
|
43477
|
+
* optional int32 operator_id = 12;
|
|
43478
|
+
* @return {number}
|
|
43479
|
+
*/
|
|
43480
|
+
proto.payment.CompensationItem.prototype.getOperatorId = function() {
|
|
43481
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
|
43482
|
+
};
|
|
43483
|
+
|
|
43484
|
+
|
|
43485
|
+
/**
|
|
43486
|
+
* @param {number} value
|
|
43487
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43488
|
+
*/
|
|
43489
|
+
proto.payment.CompensationItem.prototype.setOperatorId = function(value) {
|
|
43490
|
+
return jspb.Message.setProto3IntField(this, 12, value);
|
|
43491
|
+
};
|
|
43492
|
+
|
|
43493
|
+
|
|
43494
|
+
/**
|
|
43495
|
+
* optional string status_code = 13;
|
|
43496
|
+
* @return {string}
|
|
43497
|
+
*/
|
|
43498
|
+
proto.payment.CompensationItem.prototype.getStatusCode = function() {
|
|
43499
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
43500
|
+
};
|
|
43501
|
+
|
|
43502
|
+
|
|
43503
|
+
/**
|
|
43504
|
+
* @param {string} value
|
|
43505
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43506
|
+
*/
|
|
43507
|
+
proto.payment.CompensationItem.prototype.setStatusCode = function(value) {
|
|
43508
|
+
return jspb.Message.setProto3StringField(this, 13, value);
|
|
43509
|
+
};
|
|
43510
|
+
|
|
43511
|
+
|
|
43512
|
+
/**
|
|
43513
|
+
* optional string created_at = 14;
|
|
43514
|
+
* @return {string}
|
|
43515
|
+
*/
|
|
43516
|
+
proto.payment.CompensationItem.prototype.getCreatedAt = function() {
|
|
43517
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
|
43518
|
+
};
|
|
43519
|
+
|
|
43520
|
+
|
|
43521
|
+
/**
|
|
43522
|
+
* @param {string} value
|
|
43523
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43524
|
+
*/
|
|
43525
|
+
proto.payment.CompensationItem.prototype.setCreatedAt = function(value) {
|
|
43526
|
+
return jspb.Message.setProto3StringField(this, 14, value);
|
|
43527
|
+
};
|
|
43528
|
+
|
|
43529
|
+
|
|
43530
|
+
/**
|
|
43531
|
+
* optional string completed_at = 15;
|
|
43532
|
+
* @return {string}
|
|
43533
|
+
*/
|
|
43534
|
+
proto.payment.CompensationItem.prototype.getCompletedAt = function() {
|
|
43535
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
43536
|
+
};
|
|
43537
|
+
|
|
43538
|
+
|
|
43539
|
+
/**
|
|
43540
|
+
* @param {string} value
|
|
43541
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43542
|
+
*/
|
|
43543
|
+
proto.payment.CompensationItem.prototype.setCompletedAt = function(value) {
|
|
43544
|
+
return jspb.Message.setField(this, 15, value);
|
|
43545
|
+
};
|
|
43546
|
+
|
|
43547
|
+
|
|
43548
|
+
/**
|
|
43549
|
+
* Clears the field making it undefined.
|
|
43550
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43551
|
+
*/
|
|
43552
|
+
proto.payment.CompensationItem.prototype.clearCompletedAt = function() {
|
|
43553
|
+
return jspb.Message.setField(this, 15, undefined);
|
|
43554
|
+
};
|
|
43555
|
+
|
|
43556
|
+
|
|
43557
|
+
/**
|
|
43558
|
+
* Returns whether this field is set.
|
|
43559
|
+
* @return {boolean}
|
|
43560
|
+
*/
|
|
43561
|
+
proto.payment.CompensationItem.prototype.hasCompletedAt = function() {
|
|
43562
|
+
return jspb.Message.getField(this, 15) != null;
|
|
43563
|
+
};
|
|
43564
|
+
|
|
43565
|
+
|
|
43566
|
+
/**
|
|
43567
|
+
* optional string player_nickname = 16;
|
|
43568
|
+
* @return {string}
|
|
43569
|
+
*/
|
|
43570
|
+
proto.payment.CompensationItem.prototype.getPlayerNickname = function() {
|
|
43571
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
|
|
43572
|
+
};
|
|
43573
|
+
|
|
43574
|
+
|
|
43575
|
+
/**
|
|
43576
|
+
* @param {string} value
|
|
43577
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43578
|
+
*/
|
|
43579
|
+
proto.payment.CompensationItem.prototype.setPlayerNickname = function(value) {
|
|
43580
|
+
return jspb.Message.setField(this, 16, value);
|
|
43581
|
+
};
|
|
43582
|
+
|
|
43583
|
+
|
|
43584
|
+
/**
|
|
43585
|
+
* Clears the field making it undefined.
|
|
43586
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43587
|
+
*/
|
|
43588
|
+
proto.payment.CompensationItem.prototype.clearPlayerNickname = function() {
|
|
43589
|
+
return jspb.Message.setField(this, 16, undefined);
|
|
43590
|
+
};
|
|
43591
|
+
|
|
43592
|
+
|
|
43593
|
+
/**
|
|
43594
|
+
* Returns whether this field is set.
|
|
43595
|
+
* @return {boolean}
|
|
43596
|
+
*/
|
|
43597
|
+
proto.payment.CompensationItem.prototype.hasPlayerNickname = function() {
|
|
43598
|
+
return jspb.Message.getField(this, 16) != null;
|
|
43599
|
+
};
|
|
43600
|
+
|
|
43601
|
+
|
|
43602
|
+
/**
|
|
43603
|
+
* optional string player_email = 17;
|
|
43604
|
+
* @return {string}
|
|
43605
|
+
*/
|
|
43606
|
+
proto.payment.CompensationItem.prototype.getPlayerEmail = function() {
|
|
43607
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
|
|
43608
|
+
};
|
|
43609
|
+
|
|
43610
|
+
|
|
43611
|
+
/**
|
|
43612
|
+
* @param {string} value
|
|
43613
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43614
|
+
*/
|
|
43615
|
+
proto.payment.CompensationItem.prototype.setPlayerEmail = function(value) {
|
|
43616
|
+
return jspb.Message.setField(this, 17, value);
|
|
43617
|
+
};
|
|
43618
|
+
|
|
43619
|
+
|
|
43620
|
+
/**
|
|
43621
|
+
* Clears the field making it undefined.
|
|
43622
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43623
|
+
*/
|
|
43624
|
+
proto.payment.CompensationItem.prototype.clearPlayerEmail = function() {
|
|
43625
|
+
return jspb.Message.setField(this, 17, undefined);
|
|
43626
|
+
};
|
|
43627
|
+
|
|
43628
|
+
|
|
43629
|
+
/**
|
|
43630
|
+
* Returns whether this field is set.
|
|
43631
|
+
* @return {boolean}
|
|
43632
|
+
*/
|
|
43633
|
+
proto.payment.CompensationItem.prototype.hasPlayerEmail = function() {
|
|
43634
|
+
return jspb.Message.getField(this, 17) != null;
|
|
43635
|
+
};
|
|
43636
|
+
|
|
43637
|
+
|
|
43638
|
+
/**
|
|
43639
|
+
* optional string operator_name = 18;
|
|
43640
|
+
* @return {string}
|
|
43641
|
+
*/
|
|
43642
|
+
proto.payment.CompensationItem.prototype.getOperatorName = function() {
|
|
43643
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 18, ""));
|
|
43644
|
+
};
|
|
43645
|
+
|
|
43646
|
+
|
|
43647
|
+
/**
|
|
43648
|
+
* @param {string} value
|
|
43649
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43650
|
+
*/
|
|
43651
|
+
proto.payment.CompensationItem.prototype.setOperatorName = function(value) {
|
|
43652
|
+
return jspb.Message.setField(this, 18, value);
|
|
43653
|
+
};
|
|
43654
|
+
|
|
43655
|
+
|
|
43656
|
+
/**
|
|
43657
|
+
* Clears the field making it undefined.
|
|
43658
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43659
|
+
*/
|
|
43660
|
+
proto.payment.CompensationItem.prototype.clearOperatorName = function() {
|
|
43661
|
+
return jspb.Message.setField(this, 18, undefined);
|
|
43662
|
+
};
|
|
43663
|
+
|
|
43664
|
+
|
|
43665
|
+
/**
|
|
43666
|
+
* Returns whether this field is set.
|
|
43667
|
+
* @return {boolean}
|
|
43668
|
+
*/
|
|
43669
|
+
proto.payment.CompensationItem.prototype.hasOperatorName = function() {
|
|
43670
|
+
return jspb.Message.getField(this, 18) != null;
|
|
43671
|
+
};
|
|
43672
|
+
|
|
43673
|
+
|
|
43674
|
+
/**
|
|
43675
|
+
* optional string operator_email = 19;
|
|
43676
|
+
* @return {string}
|
|
43677
|
+
*/
|
|
43678
|
+
proto.payment.CompensationItem.prototype.getOperatorEmail = function() {
|
|
43679
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 19, ""));
|
|
43680
|
+
};
|
|
43681
|
+
|
|
43682
|
+
|
|
43683
|
+
/**
|
|
43684
|
+
* @param {string} value
|
|
43685
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43686
|
+
*/
|
|
43687
|
+
proto.payment.CompensationItem.prototype.setOperatorEmail = function(value) {
|
|
43688
|
+
return jspb.Message.setField(this, 19, value);
|
|
43689
|
+
};
|
|
43690
|
+
|
|
43691
|
+
|
|
43692
|
+
/**
|
|
43693
|
+
* Clears the field making it undefined.
|
|
43694
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43695
|
+
*/
|
|
43696
|
+
proto.payment.CompensationItem.prototype.clearOperatorEmail = function() {
|
|
43697
|
+
return jspb.Message.setField(this, 19, undefined);
|
|
43698
|
+
};
|
|
43699
|
+
|
|
43700
|
+
|
|
43701
|
+
/**
|
|
43702
|
+
* Returns whether this field is set.
|
|
43703
|
+
* @return {boolean}
|
|
43704
|
+
*/
|
|
43705
|
+
proto.payment.CompensationItem.prototype.hasOperatorEmail = function() {
|
|
43706
|
+
return jspb.Message.getField(this, 19) != null;
|
|
43707
|
+
};
|
|
43708
|
+
|
|
43709
|
+
|
|
43710
|
+
/**
|
|
43711
|
+
* optional int32 user_bonus_id = 20;
|
|
43712
|
+
* @return {number}
|
|
43713
|
+
*/
|
|
43714
|
+
proto.payment.CompensationItem.prototype.getUserBonusId = function() {
|
|
43715
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 20, 0));
|
|
43716
|
+
};
|
|
43717
|
+
|
|
43718
|
+
|
|
43719
|
+
/**
|
|
43720
|
+
* @param {number} value
|
|
43721
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43722
|
+
*/
|
|
43723
|
+
proto.payment.CompensationItem.prototype.setUserBonusId = function(value) {
|
|
43724
|
+
return jspb.Message.setField(this, 20, value);
|
|
43725
|
+
};
|
|
43726
|
+
|
|
43727
|
+
|
|
43728
|
+
/**
|
|
43729
|
+
* Clears the field making it undefined.
|
|
43730
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43731
|
+
*/
|
|
43732
|
+
proto.payment.CompensationItem.prototype.clearUserBonusId = function() {
|
|
43733
|
+
return jspb.Message.setField(this, 20, undefined);
|
|
43734
|
+
};
|
|
43735
|
+
|
|
43736
|
+
|
|
43737
|
+
/**
|
|
43738
|
+
* Returns whether this field is set.
|
|
43739
|
+
* @return {boolean}
|
|
43740
|
+
*/
|
|
43741
|
+
proto.payment.CompensationItem.prototype.hasUserBonusId = function() {
|
|
43742
|
+
return jspb.Message.getField(this, 20) != null;
|
|
43743
|
+
};
|
|
43744
|
+
|
|
43745
|
+
|
|
43746
|
+
/**
|
|
43747
|
+
* optional int32 bonus_id = 21;
|
|
43748
|
+
* @return {number}
|
|
43749
|
+
*/
|
|
43750
|
+
proto.payment.CompensationItem.prototype.getBonusId = function() {
|
|
43751
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 21, 0));
|
|
43752
|
+
};
|
|
43753
|
+
|
|
43754
|
+
|
|
43755
|
+
/**
|
|
43756
|
+
* @param {number} value
|
|
43757
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43758
|
+
*/
|
|
43759
|
+
proto.payment.CompensationItem.prototype.setBonusId = function(value) {
|
|
43760
|
+
return jspb.Message.setField(this, 21, value);
|
|
43761
|
+
};
|
|
43762
|
+
|
|
43763
|
+
|
|
43764
|
+
/**
|
|
43765
|
+
* Clears the field making it undefined.
|
|
43766
|
+
* @return {!proto.payment.CompensationItem} returns this
|
|
43767
|
+
*/
|
|
43768
|
+
proto.payment.CompensationItem.prototype.clearBonusId = function() {
|
|
43769
|
+
return jspb.Message.setField(this, 21, undefined);
|
|
43770
|
+
};
|
|
43771
|
+
|
|
43772
|
+
|
|
43773
|
+
/**
|
|
43774
|
+
* Returns whether this field is set.
|
|
43775
|
+
* @return {boolean}
|
|
43776
|
+
*/
|
|
43777
|
+
proto.payment.CompensationItem.prototype.hasBonusId = function() {
|
|
43778
|
+
return jspb.Message.getField(this, 21) != null;
|
|
43779
|
+
};
|
|
43780
|
+
|
|
43781
|
+
|
|
43782
|
+
|
|
43783
|
+
/**
|
|
43784
|
+
* List of repeated fields within this message type.
|
|
43785
|
+
* @private {!Array<number>}
|
|
43786
|
+
* @const
|
|
43787
|
+
*/
|
|
43788
|
+
proto.payment.CompensationItemsResponse.repeatedFields_ = [1];
|
|
43789
|
+
|
|
43790
|
+
|
|
43791
|
+
|
|
43792
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
43793
|
+
/**
|
|
43794
|
+
* Creates an object representation of this proto.
|
|
43795
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
43796
|
+
* Optional fields that are not set will be set to undefined.
|
|
43797
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
43798
|
+
* For the list of reserved names please see:
|
|
43799
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
43800
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
43801
|
+
* JSPB instance for transitional soy proto support:
|
|
43802
|
+
* http://goto/soy-param-migration
|
|
43803
|
+
* @return {!Object}
|
|
43804
|
+
*/
|
|
43805
|
+
proto.payment.CompensationItemsResponse.prototype.toObject = function(opt_includeInstance) {
|
|
43806
|
+
return proto.payment.CompensationItemsResponse.toObject(opt_includeInstance, this);
|
|
43807
|
+
};
|
|
43808
|
+
|
|
43809
|
+
|
|
43810
|
+
/**
|
|
43811
|
+
* Static version of the {@see toObject} method.
|
|
43812
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
43813
|
+
* the JSPB instance for transitional soy proto support:
|
|
43814
|
+
* http://goto/soy-param-migration
|
|
43815
|
+
* @param {!proto.payment.CompensationItemsResponse} msg The msg instance to transform.
|
|
43816
|
+
* @return {!Object}
|
|
43817
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
43818
|
+
*/
|
|
43819
|
+
proto.payment.CompensationItemsResponse.toObject = function(includeInstance, msg) {
|
|
43820
|
+
var f, obj = {
|
|
43821
|
+
itemsList: jspb.Message.toObjectList(msg.getItemsList(),
|
|
43822
|
+
proto.payment.CompensationItem.toObject, includeInstance),
|
|
43823
|
+
totalPages: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
43824
|
+
totalItems: jspb.Message.getFieldWithDefault(msg, 3, 0)
|
|
43825
|
+
};
|
|
43826
|
+
|
|
43827
|
+
if (includeInstance) {
|
|
43828
|
+
obj.$jspbMessageInstance = msg;
|
|
43829
|
+
}
|
|
43830
|
+
return obj;
|
|
43831
|
+
};
|
|
43832
|
+
}
|
|
43833
|
+
|
|
43834
|
+
|
|
43835
|
+
/**
|
|
43836
|
+
* Deserializes binary data (in protobuf wire format).
|
|
43837
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
43838
|
+
* @return {!proto.payment.CompensationItemsResponse}
|
|
43839
|
+
*/
|
|
43840
|
+
proto.payment.CompensationItemsResponse.deserializeBinary = function(bytes) {
|
|
43841
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
43842
|
+
var msg = new proto.payment.CompensationItemsResponse;
|
|
43843
|
+
return proto.payment.CompensationItemsResponse.deserializeBinaryFromReader(msg, reader);
|
|
43844
|
+
};
|
|
43845
|
+
|
|
43846
|
+
|
|
43847
|
+
/**
|
|
43848
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
43849
|
+
* given reader into the given message object.
|
|
43850
|
+
* @param {!proto.payment.CompensationItemsResponse} msg The message object to deserialize into.
|
|
43851
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
43852
|
+
* @return {!proto.payment.CompensationItemsResponse}
|
|
43853
|
+
*/
|
|
43854
|
+
proto.payment.CompensationItemsResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
43855
|
+
while (reader.nextField()) {
|
|
43856
|
+
if (reader.isEndGroup()) {
|
|
43857
|
+
break;
|
|
43858
|
+
}
|
|
43859
|
+
var field = reader.getFieldNumber();
|
|
43860
|
+
switch (field) {
|
|
43861
|
+
case 1:
|
|
43862
|
+
var value = new proto.payment.CompensationItem;
|
|
43863
|
+
reader.readMessage(value,proto.payment.CompensationItem.deserializeBinaryFromReader);
|
|
43864
|
+
msg.addItems(value);
|
|
43865
|
+
break;
|
|
43866
|
+
case 2:
|
|
43867
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
43868
|
+
msg.setTotalPages(value);
|
|
43869
|
+
break;
|
|
43870
|
+
case 3:
|
|
43871
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
43872
|
+
msg.setTotalItems(value);
|
|
43873
|
+
break;
|
|
43874
|
+
default:
|
|
43875
|
+
reader.skipField();
|
|
43876
|
+
break;
|
|
43877
|
+
}
|
|
43878
|
+
}
|
|
43879
|
+
return msg;
|
|
43880
|
+
};
|
|
43881
|
+
|
|
43882
|
+
|
|
43883
|
+
/**
|
|
43884
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
43885
|
+
* @return {!Uint8Array}
|
|
43886
|
+
*/
|
|
43887
|
+
proto.payment.CompensationItemsResponse.prototype.serializeBinary = function() {
|
|
43888
|
+
var writer = new jspb.BinaryWriter();
|
|
43889
|
+
proto.payment.CompensationItemsResponse.serializeBinaryToWriter(this, writer);
|
|
43890
|
+
return writer.getResultBuffer();
|
|
43891
|
+
};
|
|
43892
|
+
|
|
43893
|
+
|
|
43894
|
+
/**
|
|
43895
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
43896
|
+
* format), writing to the given BinaryWriter.
|
|
43897
|
+
* @param {!proto.payment.CompensationItemsResponse} message
|
|
43898
|
+
* @param {!jspb.BinaryWriter} writer
|
|
43899
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
43900
|
+
*/
|
|
43901
|
+
proto.payment.CompensationItemsResponse.serializeBinaryToWriter = function(message, writer) {
|
|
43902
|
+
var f = undefined;
|
|
43903
|
+
f = message.getItemsList();
|
|
43904
|
+
if (f.length > 0) {
|
|
43905
|
+
writer.writeRepeatedMessage(
|
|
43906
|
+
1,
|
|
43907
|
+
f,
|
|
43908
|
+
proto.payment.CompensationItem.serializeBinaryToWriter
|
|
43909
|
+
);
|
|
43910
|
+
}
|
|
43911
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
|
43912
|
+
if (f != null) {
|
|
43913
|
+
writer.writeInt32(
|
|
43914
|
+
2,
|
|
43915
|
+
f
|
|
43916
|
+
);
|
|
43917
|
+
}
|
|
43918
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 3));
|
|
43919
|
+
if (f != null) {
|
|
43920
|
+
writer.writeInt32(
|
|
43921
|
+
3,
|
|
43922
|
+
f
|
|
43923
|
+
);
|
|
43924
|
+
}
|
|
43925
|
+
};
|
|
43926
|
+
|
|
43927
|
+
|
|
43928
|
+
/**
|
|
43929
|
+
* repeated CompensationItem items = 1;
|
|
43930
|
+
* @return {!Array<!proto.payment.CompensationItem>}
|
|
43931
|
+
*/
|
|
43932
|
+
proto.payment.CompensationItemsResponse.prototype.getItemsList = function() {
|
|
43933
|
+
return /** @type{!Array<!proto.payment.CompensationItem>} */ (
|
|
43934
|
+
jspb.Message.getRepeatedWrapperField(this, proto.payment.CompensationItem, 1));
|
|
43935
|
+
};
|
|
43936
|
+
|
|
43937
|
+
|
|
43938
|
+
/**
|
|
43939
|
+
* @param {!Array<!proto.payment.CompensationItem>} value
|
|
43940
|
+
* @return {!proto.payment.CompensationItemsResponse} returns this
|
|
43941
|
+
*/
|
|
43942
|
+
proto.payment.CompensationItemsResponse.prototype.setItemsList = function(value) {
|
|
43943
|
+
return jspb.Message.setRepeatedWrapperField(this, 1, value);
|
|
43944
|
+
};
|
|
43945
|
+
|
|
43946
|
+
|
|
43947
|
+
/**
|
|
43948
|
+
* @param {!proto.payment.CompensationItem=} opt_value
|
|
43949
|
+
* @param {number=} opt_index
|
|
43950
|
+
* @return {!proto.payment.CompensationItem}
|
|
43951
|
+
*/
|
|
43952
|
+
proto.payment.CompensationItemsResponse.prototype.addItems = function(opt_value, opt_index) {
|
|
43953
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.payment.CompensationItem, opt_index);
|
|
43954
|
+
};
|
|
43955
|
+
|
|
43956
|
+
|
|
43957
|
+
/**
|
|
43958
|
+
* Clears the list making it empty but non-null.
|
|
43959
|
+
* @return {!proto.payment.CompensationItemsResponse} returns this
|
|
43960
|
+
*/
|
|
43961
|
+
proto.payment.CompensationItemsResponse.prototype.clearItemsList = function() {
|
|
43962
|
+
return this.setItemsList([]);
|
|
43963
|
+
};
|
|
43964
|
+
|
|
43965
|
+
|
|
43966
|
+
/**
|
|
43967
|
+
* optional int32 total_pages = 2;
|
|
43968
|
+
* @return {number}
|
|
43969
|
+
*/
|
|
43970
|
+
proto.payment.CompensationItemsResponse.prototype.getTotalPages = function() {
|
|
43971
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
43972
|
+
};
|
|
43973
|
+
|
|
43974
|
+
|
|
43975
|
+
/**
|
|
43976
|
+
* @param {number} value
|
|
43977
|
+
* @return {!proto.payment.CompensationItemsResponse} returns this
|
|
43978
|
+
*/
|
|
43979
|
+
proto.payment.CompensationItemsResponse.prototype.setTotalPages = function(value) {
|
|
43980
|
+
return jspb.Message.setField(this, 2, value);
|
|
43981
|
+
};
|
|
43982
|
+
|
|
43983
|
+
|
|
43984
|
+
/**
|
|
43985
|
+
* Clears the field making it undefined.
|
|
43986
|
+
* @return {!proto.payment.CompensationItemsResponse} returns this
|
|
43987
|
+
*/
|
|
43988
|
+
proto.payment.CompensationItemsResponse.prototype.clearTotalPages = function() {
|
|
43989
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
43990
|
+
};
|
|
43991
|
+
|
|
43992
|
+
|
|
43993
|
+
/**
|
|
43994
|
+
* Returns whether this field is set.
|
|
43995
|
+
* @return {boolean}
|
|
43996
|
+
*/
|
|
43997
|
+
proto.payment.CompensationItemsResponse.prototype.hasTotalPages = function() {
|
|
43998
|
+
return jspb.Message.getField(this, 2) != null;
|
|
43999
|
+
};
|
|
44000
|
+
|
|
44001
|
+
|
|
44002
|
+
/**
|
|
44003
|
+
* optional int32 total_items = 3;
|
|
44004
|
+
* @return {number}
|
|
44005
|
+
*/
|
|
44006
|
+
proto.payment.CompensationItemsResponse.prototype.getTotalItems = function() {
|
|
44007
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
44008
|
+
};
|
|
44009
|
+
|
|
44010
|
+
|
|
44011
|
+
/**
|
|
44012
|
+
* @param {number} value
|
|
44013
|
+
* @return {!proto.payment.CompensationItemsResponse} returns this
|
|
44014
|
+
*/
|
|
44015
|
+
proto.payment.CompensationItemsResponse.prototype.setTotalItems = function(value) {
|
|
44016
|
+
return jspb.Message.setField(this, 3, value);
|
|
44017
|
+
};
|
|
44018
|
+
|
|
44019
|
+
|
|
44020
|
+
/**
|
|
44021
|
+
* Clears the field making it undefined.
|
|
44022
|
+
* @return {!proto.payment.CompensationItemsResponse} returns this
|
|
44023
|
+
*/
|
|
44024
|
+
proto.payment.CompensationItemsResponse.prototype.clearTotalItems = function() {
|
|
44025
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
44026
|
+
};
|
|
44027
|
+
|
|
44028
|
+
|
|
44029
|
+
/**
|
|
44030
|
+
* Returns whether this field is set.
|
|
44031
|
+
* @return {boolean}
|
|
44032
|
+
*/
|
|
44033
|
+
proto.payment.CompensationItemsResponse.prototype.hasTotalItems = function() {
|
|
44034
|
+
return jspb.Message.getField(this, 3) != null;
|
|
44035
|
+
};
|
|
44036
|
+
|
|
44037
|
+
|
|
44038
|
+
|
|
44039
|
+
|
|
44040
|
+
|
|
44041
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
44042
|
+
/**
|
|
44043
|
+
* Creates an object representation of this proto.
|
|
44044
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
44045
|
+
* Optional fields that are not set will be set to undefined.
|
|
44046
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
44047
|
+
* For the list of reserved names please see:
|
|
44048
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
44049
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
44050
|
+
* JSPB instance for transitional soy proto support:
|
|
44051
|
+
* http://goto/soy-param-migration
|
|
44052
|
+
* @return {!Object}
|
|
44053
|
+
*/
|
|
44054
|
+
proto.payment.AdjustmentRequest.prototype.toObject = function(opt_includeInstance) {
|
|
44055
|
+
return proto.payment.AdjustmentRequest.toObject(opt_includeInstance, this);
|
|
44056
|
+
};
|
|
44057
|
+
|
|
44058
|
+
|
|
44059
|
+
/**
|
|
44060
|
+
* Static version of the {@see toObject} method.
|
|
44061
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
44062
|
+
* the JSPB instance for transitional soy proto support:
|
|
44063
|
+
* http://goto/soy-param-migration
|
|
44064
|
+
* @param {!proto.payment.AdjustmentRequest} msg The msg instance to transform.
|
|
44065
|
+
* @return {!Object}
|
|
44066
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
44067
|
+
*/
|
|
44068
|
+
proto.payment.AdjustmentRequest.toObject = function(includeInstance, msg) {
|
|
44069
|
+
var f, obj = {
|
|
44070
|
+
userId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
44071
|
+
amountMinor: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
44072
|
+
currency: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
44073
|
+
wagerMultiplier: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
44074
|
+
reason: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
44075
|
+
idempotencyId: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
44076
|
+
transactionCode: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
44077
|
+
internalComment: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
44078
|
+
amount: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
44079
|
+
};
|
|
44080
|
+
|
|
44081
|
+
if (includeInstance) {
|
|
44082
|
+
obj.$jspbMessageInstance = msg;
|
|
44083
|
+
}
|
|
44084
|
+
return obj;
|
|
44085
|
+
};
|
|
44086
|
+
}
|
|
44087
|
+
|
|
44088
|
+
|
|
44089
|
+
/**
|
|
44090
|
+
* Deserializes binary data (in protobuf wire format).
|
|
44091
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
44092
|
+
* @return {!proto.payment.AdjustmentRequest}
|
|
44093
|
+
*/
|
|
44094
|
+
proto.payment.AdjustmentRequest.deserializeBinary = function(bytes) {
|
|
44095
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
44096
|
+
var msg = new proto.payment.AdjustmentRequest;
|
|
44097
|
+
return proto.payment.AdjustmentRequest.deserializeBinaryFromReader(msg, reader);
|
|
44098
|
+
};
|
|
44099
|
+
|
|
44100
|
+
|
|
44101
|
+
/**
|
|
44102
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
44103
|
+
* given reader into the given message object.
|
|
44104
|
+
* @param {!proto.payment.AdjustmentRequest} msg The message object to deserialize into.
|
|
44105
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
44106
|
+
* @return {!proto.payment.AdjustmentRequest}
|
|
44107
|
+
*/
|
|
44108
|
+
proto.payment.AdjustmentRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
44109
|
+
while (reader.nextField()) {
|
|
44110
|
+
if (reader.isEndGroup()) {
|
|
44111
|
+
break;
|
|
44112
|
+
}
|
|
44113
|
+
var field = reader.getFieldNumber();
|
|
44114
|
+
switch (field) {
|
|
44115
|
+
case 1:
|
|
44116
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
44117
|
+
msg.setUserId(value);
|
|
44118
|
+
break;
|
|
44119
|
+
case 2:
|
|
44120
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
44121
|
+
msg.setAmountMinor(value);
|
|
44122
|
+
break;
|
|
44123
|
+
case 3:
|
|
44124
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44125
|
+
msg.setCurrency(value);
|
|
44126
|
+
break;
|
|
44127
|
+
case 4:
|
|
44128
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44129
|
+
msg.setWagerMultiplier(value);
|
|
44130
|
+
break;
|
|
44131
|
+
case 5:
|
|
44132
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44133
|
+
msg.setReason(value);
|
|
44134
|
+
break;
|
|
44135
|
+
case 6:
|
|
44136
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44137
|
+
msg.setIdempotencyId(value);
|
|
44138
|
+
break;
|
|
44139
|
+
case 7:
|
|
44140
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44141
|
+
msg.setTransactionCode(value);
|
|
44142
|
+
break;
|
|
44143
|
+
case 8:
|
|
44144
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44145
|
+
msg.setInternalComment(value);
|
|
44146
|
+
break;
|
|
44147
|
+
case 9:
|
|
44148
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44149
|
+
msg.setAmount(value);
|
|
44150
|
+
break;
|
|
44151
|
+
default:
|
|
44152
|
+
reader.skipField();
|
|
44153
|
+
break;
|
|
44154
|
+
}
|
|
44155
|
+
}
|
|
44156
|
+
return msg;
|
|
44157
|
+
};
|
|
44158
|
+
|
|
44159
|
+
|
|
44160
|
+
/**
|
|
44161
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
44162
|
+
* @return {!Uint8Array}
|
|
44163
|
+
*/
|
|
44164
|
+
proto.payment.AdjustmentRequest.prototype.serializeBinary = function() {
|
|
44165
|
+
var writer = new jspb.BinaryWriter();
|
|
44166
|
+
proto.payment.AdjustmentRequest.serializeBinaryToWriter(this, writer);
|
|
44167
|
+
return writer.getResultBuffer();
|
|
44168
|
+
};
|
|
44169
|
+
|
|
44170
|
+
|
|
44171
|
+
/**
|
|
44172
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
44173
|
+
* format), writing to the given BinaryWriter.
|
|
44174
|
+
* @param {!proto.payment.AdjustmentRequest} message
|
|
44175
|
+
* @param {!jspb.BinaryWriter} writer
|
|
44176
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
44177
|
+
*/
|
|
44178
|
+
proto.payment.AdjustmentRequest.serializeBinaryToWriter = function(message, writer) {
|
|
44179
|
+
var f = undefined;
|
|
44180
|
+
f = message.getUserId();
|
|
44181
|
+
if (f !== 0) {
|
|
44182
|
+
writer.writeInt32(
|
|
44183
|
+
1,
|
|
44184
|
+
f
|
|
44185
|
+
);
|
|
44186
|
+
}
|
|
44187
|
+
f = message.getAmountMinor();
|
|
44188
|
+
if (f !== 0) {
|
|
44189
|
+
writer.writeInt64(
|
|
44190
|
+
2,
|
|
44191
|
+
f
|
|
44192
|
+
);
|
|
44193
|
+
}
|
|
44194
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
44195
|
+
if (f != null) {
|
|
44196
|
+
writer.writeString(
|
|
44197
|
+
3,
|
|
44198
|
+
f
|
|
44199
|
+
);
|
|
44200
|
+
}
|
|
44201
|
+
f = message.getWagerMultiplier();
|
|
44202
|
+
if (f.length > 0) {
|
|
44203
|
+
writer.writeString(
|
|
44204
|
+
4,
|
|
44205
|
+
f
|
|
44206
|
+
);
|
|
44207
|
+
}
|
|
44208
|
+
f = message.getReason();
|
|
44209
|
+
if (f.length > 0) {
|
|
44210
|
+
writer.writeString(
|
|
44211
|
+
5,
|
|
44212
|
+
f
|
|
44213
|
+
);
|
|
44214
|
+
}
|
|
44215
|
+
f = message.getIdempotencyId();
|
|
44216
|
+
if (f.length > 0) {
|
|
44217
|
+
writer.writeString(
|
|
44218
|
+
6,
|
|
44219
|
+
f
|
|
44220
|
+
);
|
|
44221
|
+
}
|
|
41716
44222
|
f = message.getTransactionCode();
|
|
41717
44223
|
if (f.length > 0) {
|
|
41718
44224
|
writer.writeString(
|
|
41719
|
-
|
|
44225
|
+
7,
|
|
41720
44226
|
f
|
|
41721
44227
|
);
|
|
41722
44228
|
}
|
|
41723
44229
|
f = message.getInternalComment();
|
|
41724
44230
|
if (f.length > 0) {
|
|
41725
44231
|
writer.writeString(
|
|
41726
|
-
|
|
44232
|
+
8,
|
|
41727
44233
|
f
|
|
41728
44234
|
);
|
|
41729
44235
|
}
|
|
41730
44236
|
f = message.getAmount();
|
|
41731
44237
|
if (f.length > 0) {
|
|
41732
44238
|
writer.writeString(
|
|
41733
|
-
|
|
41734
|
-
f
|
|
41735
|
-
);
|
|
41736
|
-
}
|
|
41737
|
-
f = /** @type {string} */ (jspb.Message.getField(message, 11));
|
|
41738
|
-
if (f != null) {
|
|
41739
|
-
writer.writeString(
|
|
41740
|
-
11,
|
|
44239
|
+
9,
|
|
41741
44240
|
f
|
|
41742
44241
|
);
|
|
41743
44242
|
}
|
|
@@ -41748,16 +44247,16 @@ proto.payment.CompensationRequest.serializeBinaryToWriter = function(message, wr
|
|
|
41748
44247
|
* optional int32 user_id = 1;
|
|
41749
44248
|
* @return {number}
|
|
41750
44249
|
*/
|
|
41751
|
-
proto.payment.
|
|
44250
|
+
proto.payment.AdjustmentRequest.prototype.getUserId = function() {
|
|
41752
44251
|
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
41753
44252
|
};
|
|
41754
44253
|
|
|
41755
44254
|
|
|
41756
44255
|
/**
|
|
41757
44256
|
* @param {number} value
|
|
41758
|
-
* @return {!proto.payment.
|
|
44257
|
+
* @return {!proto.payment.AdjustmentRequest} returns this
|
|
41759
44258
|
*/
|
|
41760
|
-
proto.payment.
|
|
44259
|
+
proto.payment.AdjustmentRequest.prototype.setUserId = function(value) {
|
|
41761
44260
|
return jspb.Message.setProto3IntField(this, 1, value);
|
|
41762
44261
|
};
|
|
41763
44262
|
|
|
@@ -41766,16 +44265,16 @@ proto.payment.CompensationRequest.prototype.setUserId = function(value) {
|
|
|
41766
44265
|
* optional int64 amount_minor = 2;
|
|
41767
44266
|
* @return {number}
|
|
41768
44267
|
*/
|
|
41769
|
-
proto.payment.
|
|
44268
|
+
proto.payment.AdjustmentRequest.prototype.getAmountMinor = function() {
|
|
41770
44269
|
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
41771
44270
|
};
|
|
41772
44271
|
|
|
41773
44272
|
|
|
41774
44273
|
/**
|
|
41775
44274
|
* @param {number} value
|
|
41776
|
-
* @return {!proto.payment.
|
|
44275
|
+
* @return {!proto.payment.AdjustmentRequest} returns this
|
|
41777
44276
|
*/
|
|
41778
|
-
proto.payment.
|
|
44277
|
+
proto.payment.AdjustmentRequest.prototype.setAmountMinor = function(value) {
|
|
41779
44278
|
return jspb.Message.setProto3IntField(this, 2, value);
|
|
41780
44279
|
};
|
|
41781
44280
|
|
|
@@ -41784,25 +44283,25 @@ proto.payment.CompensationRequest.prototype.setAmountMinor = function(value) {
|
|
|
41784
44283
|
* optional string currency = 3;
|
|
41785
44284
|
* @return {string}
|
|
41786
44285
|
*/
|
|
41787
|
-
proto.payment.
|
|
44286
|
+
proto.payment.AdjustmentRequest.prototype.getCurrency = function() {
|
|
41788
44287
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
41789
44288
|
};
|
|
41790
44289
|
|
|
41791
44290
|
|
|
41792
44291
|
/**
|
|
41793
44292
|
* @param {string} value
|
|
41794
|
-
* @return {!proto.payment.
|
|
44293
|
+
* @return {!proto.payment.AdjustmentRequest} returns this
|
|
41795
44294
|
*/
|
|
41796
|
-
proto.payment.
|
|
44295
|
+
proto.payment.AdjustmentRequest.prototype.setCurrency = function(value) {
|
|
41797
44296
|
return jspb.Message.setField(this, 3, value);
|
|
41798
44297
|
};
|
|
41799
44298
|
|
|
41800
44299
|
|
|
41801
44300
|
/**
|
|
41802
44301
|
* Clears the field making it undefined.
|
|
41803
|
-
* @return {!proto.payment.
|
|
44302
|
+
* @return {!proto.payment.AdjustmentRequest} returns this
|
|
41804
44303
|
*/
|
|
41805
|
-
proto.payment.
|
|
44304
|
+
proto.payment.AdjustmentRequest.prototype.clearCurrency = function() {
|
|
41806
44305
|
return jspb.Message.setField(this, 3, undefined);
|
|
41807
44306
|
};
|
|
41808
44307
|
|
|
@@ -41811,7 +44310,7 @@ proto.payment.CompensationRequest.prototype.clearCurrency = function() {
|
|
|
41811
44310
|
* Returns whether this field is set.
|
|
41812
44311
|
* @return {boolean}
|
|
41813
44312
|
*/
|
|
41814
|
-
proto.payment.
|
|
44313
|
+
proto.payment.AdjustmentRequest.prototype.hasCurrency = function() {
|
|
41815
44314
|
return jspb.Message.getField(this, 3) != null;
|
|
41816
44315
|
};
|
|
41817
44316
|
|
|
@@ -41820,16 +44319,16 @@ proto.payment.CompensationRequest.prototype.hasCurrency = function() {
|
|
|
41820
44319
|
* optional string wager_multiplier = 4;
|
|
41821
44320
|
* @return {string}
|
|
41822
44321
|
*/
|
|
41823
|
-
proto.payment.
|
|
44322
|
+
proto.payment.AdjustmentRequest.prototype.getWagerMultiplier = function() {
|
|
41824
44323
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
41825
44324
|
};
|
|
41826
44325
|
|
|
41827
44326
|
|
|
41828
44327
|
/**
|
|
41829
44328
|
* @param {string} value
|
|
41830
|
-
* @return {!proto.payment.
|
|
44329
|
+
* @return {!proto.payment.AdjustmentRequest} returns this
|
|
41831
44330
|
*/
|
|
41832
|
-
proto.payment.
|
|
44331
|
+
proto.payment.AdjustmentRequest.prototype.setWagerMultiplier = function(value) {
|
|
41833
44332
|
return jspb.Message.setProto3StringField(this, 4, value);
|
|
41834
44333
|
};
|
|
41835
44334
|
|
|
@@ -41838,16 +44337,16 @@ proto.payment.CompensationRequest.prototype.setWagerMultiplier = function(value)
|
|
|
41838
44337
|
* optional string reason = 5;
|
|
41839
44338
|
* @return {string}
|
|
41840
44339
|
*/
|
|
41841
|
-
proto.payment.
|
|
44340
|
+
proto.payment.AdjustmentRequest.prototype.getReason = function() {
|
|
41842
44341
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
41843
44342
|
};
|
|
41844
44343
|
|
|
41845
44344
|
|
|
41846
44345
|
/**
|
|
41847
44346
|
* @param {string} value
|
|
41848
|
-
* @return {!proto.payment.
|
|
44347
|
+
* @return {!proto.payment.AdjustmentRequest} returns this
|
|
41849
44348
|
*/
|
|
41850
|
-
proto.payment.
|
|
44349
|
+
proto.payment.AdjustmentRequest.prototype.setReason = function(value) {
|
|
41851
44350
|
return jspb.Message.setProto3StringField(this, 5, value);
|
|
41852
44351
|
};
|
|
41853
44352
|
|
|
@@ -41856,135 +44355,81 @@ proto.payment.CompensationRequest.prototype.setReason = function(value) {
|
|
|
41856
44355
|
* optional string idempotency_id = 6;
|
|
41857
44356
|
* @return {string}
|
|
41858
44357
|
*/
|
|
41859
|
-
proto.payment.
|
|
44358
|
+
proto.payment.AdjustmentRequest.prototype.getIdempotencyId = function() {
|
|
41860
44359
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
41861
44360
|
};
|
|
41862
44361
|
|
|
41863
44362
|
|
|
41864
44363
|
/**
|
|
41865
44364
|
* @param {string} value
|
|
41866
|
-
* @return {!proto.payment.
|
|
44365
|
+
* @return {!proto.payment.AdjustmentRequest} returns this
|
|
41867
44366
|
*/
|
|
41868
|
-
proto.payment.
|
|
44367
|
+
proto.payment.AdjustmentRequest.prototype.setIdempotencyId = function(value) {
|
|
41869
44368
|
return jspb.Message.setProto3StringField(this, 6, value);
|
|
41870
44369
|
};
|
|
41871
44370
|
|
|
41872
44371
|
|
|
41873
44372
|
/**
|
|
41874
|
-
* optional string
|
|
44373
|
+
* optional string transaction_code = 7;
|
|
41875
44374
|
* @return {string}
|
|
41876
44375
|
*/
|
|
41877
|
-
proto.payment.
|
|
44376
|
+
proto.payment.AdjustmentRequest.prototype.getTransactionCode = function() {
|
|
41878
44377
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
41879
44378
|
};
|
|
41880
44379
|
|
|
41881
44380
|
|
|
41882
44381
|
/**
|
|
41883
44382
|
* @param {string} value
|
|
41884
|
-
* @return {!proto.payment.
|
|
44383
|
+
* @return {!proto.payment.AdjustmentRequest} returns this
|
|
41885
44384
|
*/
|
|
41886
|
-
proto.payment.
|
|
44385
|
+
proto.payment.AdjustmentRequest.prototype.setTransactionCode = function(value) {
|
|
41887
44386
|
return jspb.Message.setProto3StringField(this, 7, value);
|
|
41888
44387
|
};
|
|
41889
44388
|
|
|
41890
44389
|
|
|
41891
44390
|
/**
|
|
41892
|
-
* optional string
|
|
44391
|
+
* optional string internal_comment = 8;
|
|
41893
44392
|
* @return {string}
|
|
41894
44393
|
*/
|
|
41895
|
-
proto.payment.
|
|
44394
|
+
proto.payment.AdjustmentRequest.prototype.getInternalComment = function() {
|
|
41896
44395
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
41897
44396
|
};
|
|
41898
44397
|
|
|
41899
44398
|
|
|
41900
44399
|
/**
|
|
41901
44400
|
* @param {string} value
|
|
41902
|
-
* @return {!proto.payment.
|
|
44401
|
+
* @return {!proto.payment.AdjustmentRequest} returns this
|
|
41903
44402
|
*/
|
|
41904
|
-
proto.payment.
|
|
44403
|
+
proto.payment.AdjustmentRequest.prototype.setInternalComment = function(value) {
|
|
41905
44404
|
return jspb.Message.setProto3StringField(this, 8, value);
|
|
41906
44405
|
};
|
|
41907
44406
|
|
|
41908
44407
|
|
|
41909
44408
|
/**
|
|
41910
|
-
* optional string
|
|
44409
|
+
* optional string amount = 9;
|
|
41911
44410
|
* @return {string}
|
|
41912
44411
|
*/
|
|
41913
|
-
proto.payment.
|
|
44412
|
+
proto.payment.AdjustmentRequest.prototype.getAmount = function() {
|
|
41914
44413
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
41915
44414
|
};
|
|
41916
44415
|
|
|
41917
44416
|
|
|
41918
44417
|
/**
|
|
41919
44418
|
* @param {string} value
|
|
41920
|
-
* @return {!proto.payment.
|
|
44419
|
+
* @return {!proto.payment.AdjustmentRequest} returns this
|
|
41921
44420
|
*/
|
|
41922
|
-
proto.payment.
|
|
44421
|
+
proto.payment.AdjustmentRequest.prototype.setAmount = function(value) {
|
|
41923
44422
|
return jspb.Message.setProto3StringField(this, 9, value);
|
|
41924
44423
|
};
|
|
41925
44424
|
|
|
41926
44425
|
|
|
41927
|
-
/**
|
|
41928
|
-
* optional string amount = 10;
|
|
41929
|
-
* @return {string}
|
|
41930
|
-
*/
|
|
41931
|
-
proto.payment.CompensationRequest.prototype.getAmount = function() {
|
|
41932
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
41933
|
-
};
|
|
41934
|
-
|
|
41935
|
-
|
|
41936
|
-
/**
|
|
41937
|
-
* @param {string} value
|
|
41938
|
-
* @return {!proto.payment.CompensationRequest} returns this
|
|
41939
|
-
*/
|
|
41940
|
-
proto.payment.CompensationRequest.prototype.setAmount = function(value) {
|
|
41941
|
-
return jspb.Message.setProto3StringField(this, 10, value);
|
|
41942
|
-
};
|
|
41943
|
-
|
|
41944
|
-
|
|
41945
|
-
/**
|
|
41946
|
-
* optional string promo_or_bonus_id = 11;
|
|
41947
|
-
* @return {string}
|
|
41948
|
-
*/
|
|
41949
|
-
proto.payment.CompensationRequest.prototype.getPromoOrBonusId = function() {
|
|
41950
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
41951
|
-
};
|
|
41952
|
-
|
|
41953
|
-
|
|
41954
|
-
/**
|
|
41955
|
-
* @param {string} value
|
|
41956
|
-
* @return {!proto.payment.CompensationRequest} returns this
|
|
41957
|
-
*/
|
|
41958
|
-
proto.payment.CompensationRequest.prototype.setPromoOrBonusId = function(value) {
|
|
41959
|
-
return jspb.Message.setField(this, 11, value);
|
|
41960
|
-
};
|
|
41961
|
-
|
|
41962
|
-
|
|
41963
|
-
/**
|
|
41964
|
-
* Clears the field making it undefined.
|
|
41965
|
-
* @return {!proto.payment.CompensationRequest} returns this
|
|
41966
|
-
*/
|
|
41967
|
-
proto.payment.CompensationRequest.prototype.clearPromoOrBonusId = function() {
|
|
41968
|
-
return jspb.Message.setField(this, 11, undefined);
|
|
41969
|
-
};
|
|
41970
|
-
|
|
41971
|
-
|
|
41972
|
-
/**
|
|
41973
|
-
* Returns whether this field is set.
|
|
41974
|
-
* @return {boolean}
|
|
41975
|
-
*/
|
|
41976
|
-
proto.payment.CompensationRequest.prototype.hasPromoOrBonusId = function() {
|
|
41977
|
-
return jspb.Message.getField(this, 11) != null;
|
|
41978
|
-
};
|
|
41979
|
-
|
|
41980
|
-
|
|
41981
44426
|
|
|
41982
44427
|
/**
|
|
41983
44428
|
* List of repeated fields within this message type.
|
|
41984
44429
|
* @private {!Array<number>}
|
|
41985
44430
|
* @const
|
|
41986
44431
|
*/
|
|
41987
|
-
proto.payment.
|
|
44432
|
+
proto.payment.AdjustmentSearchRequest.repeatedFields_ = [2,4,7,9];
|
|
41988
44433
|
|
|
41989
44434
|
|
|
41990
44435
|
|
|
@@ -42001,8 +44446,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
42001
44446
|
* http://goto/soy-param-migration
|
|
42002
44447
|
* @return {!Object}
|
|
42003
44448
|
*/
|
|
42004
|
-
proto.payment.
|
|
42005
|
-
return proto.payment.
|
|
44449
|
+
proto.payment.AdjustmentSearchRequest.prototype.toObject = function(opt_includeInstance) {
|
|
44450
|
+
return proto.payment.AdjustmentSearchRequest.toObject(opt_includeInstance, this);
|
|
42006
44451
|
};
|
|
42007
44452
|
|
|
42008
44453
|
|
|
@@ -42011,24 +44456,23 @@ proto.payment.CompensationSearchRequest.prototype.toObject = function(opt_includ
|
|
|
42011
44456
|
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
42012
44457
|
* the JSPB instance for transitional soy proto support:
|
|
42013
44458
|
* http://goto/soy-param-migration
|
|
42014
|
-
* @param {!proto.payment.
|
|
44459
|
+
* @param {!proto.payment.AdjustmentSearchRequest} msg The msg instance to transform.
|
|
42015
44460
|
* @return {!Object}
|
|
42016
44461
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
42017
44462
|
*/
|
|
42018
|
-
proto.payment.
|
|
44463
|
+
proto.payment.AdjustmentSearchRequest.toObject = function(includeInstance, msg) {
|
|
42019
44464
|
var f, obj = {
|
|
42020
44465
|
operationId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
42021
44466
|
userIdsList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
42022
|
-
|
|
42023
|
-
|
|
42024
|
-
|
|
42025
|
-
|
|
42026
|
-
|
|
42027
|
-
|
|
42028
|
-
|
|
42029
|
-
|
|
42030
|
-
|
|
42031
|
-
amountMinorTo: jspb.Message.getFieldWithDefault(msg, 12, 0)
|
|
44467
|
+
transactionCode: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
44468
|
+
operationStatusCodesList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
44469
|
+
createdFrom: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
44470
|
+
createdTo: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
44471
|
+
currencyList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
|
|
44472
|
+
playerNickname: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
44473
|
+
operatorIdsList: (f = jspb.Message.getRepeatedField(msg, 9)) == null ? undefined : f,
|
|
44474
|
+
amountMinorFrom: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
|
44475
|
+
amountMinorTo: jspb.Message.getFieldWithDefault(msg, 11, 0)
|
|
42032
44476
|
};
|
|
42033
44477
|
|
|
42034
44478
|
if (includeInstance) {
|
|
@@ -42042,23 +44486,23 @@ proto.payment.CompensationSearchRequest.toObject = function(includeInstance, msg
|
|
|
42042
44486
|
/**
|
|
42043
44487
|
* Deserializes binary data (in protobuf wire format).
|
|
42044
44488
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
42045
|
-
* @return {!proto.payment.
|
|
44489
|
+
* @return {!proto.payment.AdjustmentSearchRequest}
|
|
42046
44490
|
*/
|
|
42047
|
-
proto.payment.
|
|
44491
|
+
proto.payment.AdjustmentSearchRequest.deserializeBinary = function(bytes) {
|
|
42048
44492
|
var reader = new jspb.BinaryReader(bytes);
|
|
42049
|
-
var msg = new proto.payment.
|
|
42050
|
-
return proto.payment.
|
|
44493
|
+
var msg = new proto.payment.AdjustmentSearchRequest;
|
|
44494
|
+
return proto.payment.AdjustmentSearchRequest.deserializeBinaryFromReader(msg, reader);
|
|
42051
44495
|
};
|
|
42052
44496
|
|
|
42053
44497
|
|
|
42054
44498
|
/**
|
|
42055
44499
|
* Deserializes binary data (in protobuf wire format) from the
|
|
42056
44500
|
* given reader into the given message object.
|
|
42057
|
-
* @param {!proto.payment.
|
|
44501
|
+
* @param {!proto.payment.AdjustmentSearchRequest} msg The message object to deserialize into.
|
|
42058
44502
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
42059
|
-
* @return {!proto.payment.
|
|
44503
|
+
* @return {!proto.payment.AdjustmentSearchRequest}
|
|
42060
44504
|
*/
|
|
42061
|
-
proto.payment.
|
|
44505
|
+
proto.payment.AdjustmentSearchRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
42062
44506
|
while (reader.nextField()) {
|
|
42063
44507
|
if (reader.isEndGroup()) {
|
|
42064
44508
|
break;
|
|
@@ -42076,44 +44520,40 @@ proto.payment.CompensationSearchRequest.deserializeBinaryFromReader = function(m
|
|
|
42076
44520
|
}
|
|
42077
44521
|
break;
|
|
42078
44522
|
case 3:
|
|
42079
|
-
var value = /** @type {string} */ (reader.readString());
|
|
42080
|
-
msg.addCompensationTypes(value);
|
|
42081
|
-
break;
|
|
42082
|
-
case 4:
|
|
42083
44523
|
var value = /** @type {string} */ (reader.readString());
|
|
42084
44524
|
msg.setTransactionCode(value);
|
|
42085
44525
|
break;
|
|
42086
|
-
case
|
|
44526
|
+
case 4:
|
|
42087
44527
|
var value = /** @type {string} */ (reader.readString());
|
|
42088
44528
|
msg.addOperationStatusCodes(value);
|
|
42089
44529
|
break;
|
|
42090
|
-
case
|
|
44530
|
+
case 5:
|
|
42091
44531
|
var value = /** @type {string} */ (reader.readString());
|
|
42092
44532
|
msg.setCreatedFrom(value);
|
|
42093
44533
|
break;
|
|
42094
|
-
case
|
|
44534
|
+
case 6:
|
|
42095
44535
|
var value = /** @type {string} */ (reader.readString());
|
|
42096
44536
|
msg.setCreatedTo(value);
|
|
42097
44537
|
break;
|
|
42098
|
-
case
|
|
44538
|
+
case 7:
|
|
42099
44539
|
var value = /** @type {string} */ (reader.readString());
|
|
42100
44540
|
msg.addCurrency(value);
|
|
42101
44541
|
break;
|
|
42102
|
-
case
|
|
44542
|
+
case 8:
|
|
42103
44543
|
var value = /** @type {string} */ (reader.readString());
|
|
42104
44544
|
msg.setPlayerNickname(value);
|
|
42105
44545
|
break;
|
|
42106
|
-
case
|
|
44546
|
+
case 9:
|
|
42107
44547
|
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt32() : [reader.readInt32()]);
|
|
42108
44548
|
for (var i = 0; i < values.length; i++) {
|
|
42109
44549
|
msg.addOperatorIds(values[i]);
|
|
42110
44550
|
}
|
|
42111
44551
|
break;
|
|
42112
|
-
case
|
|
44552
|
+
case 10:
|
|
42113
44553
|
var value = /** @type {number} */ (reader.readInt64());
|
|
42114
44554
|
msg.setAmountMinorFrom(value);
|
|
42115
44555
|
break;
|
|
42116
|
-
case
|
|
44556
|
+
case 11:
|
|
42117
44557
|
var value = /** @type {number} */ (reader.readInt64());
|
|
42118
44558
|
msg.setAmountMinorTo(value);
|
|
42119
44559
|
break;
|
|
@@ -42130,9 +44570,9 @@ proto.payment.CompensationSearchRequest.deserializeBinaryFromReader = function(m
|
|
|
42130
44570
|
* Serializes the message to binary data (in protobuf wire format).
|
|
42131
44571
|
* @return {!Uint8Array}
|
|
42132
44572
|
*/
|
|
42133
|
-
proto.payment.
|
|
44573
|
+
proto.payment.AdjustmentSearchRequest.prototype.serializeBinary = function() {
|
|
42134
44574
|
var writer = new jspb.BinaryWriter();
|
|
42135
|
-
proto.payment.
|
|
44575
|
+
proto.payment.AdjustmentSearchRequest.serializeBinaryToWriter(this, writer);
|
|
42136
44576
|
return writer.getResultBuffer();
|
|
42137
44577
|
};
|
|
42138
44578
|
|
|
@@ -42140,11 +44580,11 @@ proto.payment.CompensationSearchRequest.prototype.serializeBinary = function() {
|
|
|
42140
44580
|
/**
|
|
42141
44581
|
* Serializes the given message to binary data (in protobuf wire
|
|
42142
44582
|
* format), writing to the given BinaryWriter.
|
|
42143
|
-
* @param {!proto.payment.
|
|
44583
|
+
* @param {!proto.payment.AdjustmentSearchRequest} message
|
|
42144
44584
|
* @param {!jspb.BinaryWriter} writer
|
|
42145
44585
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
42146
44586
|
*/
|
|
42147
|
-
proto.payment.
|
|
44587
|
+
proto.payment.AdjustmentSearchRequest.serializeBinaryToWriter = function(message, writer) {
|
|
42148
44588
|
var f = undefined;
|
|
42149
44589
|
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
42150
44590
|
if (f != null) {
|
|
@@ -42160,73 +44600,66 @@ proto.payment.CompensationSearchRequest.serializeBinaryToWriter = function(messa
|
|
|
42160
44600
|
f
|
|
42161
44601
|
);
|
|
42162
44602
|
}
|
|
42163
|
-
f =
|
|
42164
|
-
if (f.length > 0) {
|
|
42165
|
-
writer.writeRepeatedString(
|
|
42166
|
-
3,
|
|
42167
|
-
f
|
|
42168
|
-
);
|
|
42169
|
-
}
|
|
42170
|
-
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
44603
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
42171
44604
|
if (f != null) {
|
|
42172
44605
|
writer.writeString(
|
|
42173
|
-
|
|
44606
|
+
3,
|
|
42174
44607
|
f
|
|
42175
44608
|
);
|
|
42176
44609
|
}
|
|
42177
44610
|
f = message.getOperationStatusCodesList();
|
|
42178
44611
|
if (f.length > 0) {
|
|
42179
44612
|
writer.writeRepeatedString(
|
|
42180
|
-
|
|
44613
|
+
4,
|
|
42181
44614
|
f
|
|
42182
44615
|
);
|
|
42183
44616
|
}
|
|
42184
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
|
44617
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
42185
44618
|
if (f != null) {
|
|
42186
44619
|
writer.writeString(
|
|
42187
|
-
|
|
44620
|
+
5,
|
|
42188
44621
|
f
|
|
42189
44622
|
);
|
|
42190
44623
|
}
|
|
42191
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
|
44624
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
42192
44625
|
if (f != null) {
|
|
42193
44626
|
writer.writeString(
|
|
42194
|
-
|
|
44627
|
+
6,
|
|
42195
44628
|
f
|
|
42196
44629
|
);
|
|
42197
44630
|
}
|
|
42198
44631
|
f = message.getCurrencyList();
|
|
42199
44632
|
if (f.length > 0) {
|
|
42200
44633
|
writer.writeRepeatedString(
|
|
42201
|
-
|
|
44634
|
+
7,
|
|
42202
44635
|
f
|
|
42203
44636
|
);
|
|
42204
44637
|
}
|
|
42205
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
|
44638
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
42206
44639
|
if (f != null) {
|
|
42207
44640
|
writer.writeString(
|
|
42208
|
-
|
|
44641
|
+
8,
|
|
42209
44642
|
f
|
|
42210
44643
|
);
|
|
42211
44644
|
}
|
|
42212
44645
|
f = message.getOperatorIdsList();
|
|
42213
44646
|
if (f.length > 0) {
|
|
42214
44647
|
writer.writePackedInt32(
|
|
42215
|
-
|
|
44648
|
+
9,
|
|
42216
44649
|
f
|
|
42217
44650
|
);
|
|
42218
44651
|
}
|
|
42219
|
-
f = /** @type {number} */ (jspb.Message.getField(message,
|
|
44652
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 10));
|
|
42220
44653
|
if (f != null) {
|
|
42221
44654
|
writer.writeInt64(
|
|
42222
|
-
|
|
44655
|
+
10,
|
|
42223
44656
|
f
|
|
42224
44657
|
);
|
|
42225
44658
|
}
|
|
42226
|
-
f = /** @type {number} */ (jspb.Message.getField(message,
|
|
44659
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 11));
|
|
42227
44660
|
if (f != null) {
|
|
42228
44661
|
writer.writeInt64(
|
|
42229
|
-
|
|
44662
|
+
11,
|
|
42230
44663
|
f
|
|
42231
44664
|
);
|
|
42232
44665
|
}
|
|
@@ -42237,25 +44670,25 @@ proto.payment.CompensationSearchRequest.serializeBinaryToWriter = function(messa
|
|
|
42237
44670
|
* optional int32 operation_id = 1;
|
|
42238
44671
|
* @return {number}
|
|
42239
44672
|
*/
|
|
42240
|
-
proto.payment.
|
|
44673
|
+
proto.payment.AdjustmentSearchRequest.prototype.getOperationId = function() {
|
|
42241
44674
|
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
42242
44675
|
};
|
|
42243
44676
|
|
|
42244
44677
|
|
|
42245
44678
|
/**
|
|
42246
44679
|
* @param {number} value
|
|
42247
|
-
* @return {!proto.payment.
|
|
44680
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42248
44681
|
*/
|
|
42249
|
-
proto.payment.
|
|
44682
|
+
proto.payment.AdjustmentSearchRequest.prototype.setOperationId = function(value) {
|
|
42250
44683
|
return jspb.Message.setField(this, 1, value);
|
|
42251
44684
|
};
|
|
42252
44685
|
|
|
42253
44686
|
|
|
42254
44687
|
/**
|
|
42255
44688
|
* Clears the field making it undefined.
|
|
42256
|
-
* @return {!proto.payment.
|
|
44689
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42257
44690
|
*/
|
|
42258
|
-
proto.payment.
|
|
44691
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearOperationId = function() {
|
|
42259
44692
|
return jspb.Message.setField(this, 1, undefined);
|
|
42260
44693
|
};
|
|
42261
44694
|
|
|
@@ -42264,7 +44697,7 @@ proto.payment.CompensationSearchRequest.prototype.clearOperationId = function()
|
|
|
42264
44697
|
* Returns whether this field is set.
|
|
42265
44698
|
* @return {boolean}
|
|
42266
44699
|
*/
|
|
42267
|
-
proto.payment.
|
|
44700
|
+
proto.payment.AdjustmentSearchRequest.prototype.hasOperationId = function() {
|
|
42268
44701
|
return jspb.Message.getField(this, 1) != null;
|
|
42269
44702
|
};
|
|
42270
44703
|
|
|
@@ -42273,16 +44706,16 @@ proto.payment.CompensationSearchRequest.prototype.hasOperationId = function() {
|
|
|
42273
44706
|
* repeated int32 user_ids = 2;
|
|
42274
44707
|
* @return {!Array<number>}
|
|
42275
44708
|
*/
|
|
42276
|
-
proto.payment.
|
|
44709
|
+
proto.payment.AdjustmentSearchRequest.prototype.getUserIdsList = function() {
|
|
42277
44710
|
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 2));
|
|
42278
44711
|
};
|
|
42279
44712
|
|
|
42280
44713
|
|
|
42281
44714
|
/**
|
|
42282
44715
|
* @param {!Array<number>} value
|
|
42283
|
-
* @return {!proto.payment.
|
|
44716
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42284
44717
|
*/
|
|
42285
|
-
proto.payment.
|
|
44718
|
+
proto.payment.AdjustmentSearchRequest.prototype.setUserIdsList = function(value) {
|
|
42286
44719
|
return jspb.Message.setField(this, 2, value || []);
|
|
42287
44720
|
};
|
|
42288
44721
|
|
|
@@ -42290,83 +44723,46 @@ proto.payment.CompensationSearchRequest.prototype.setUserIdsList = function(valu
|
|
|
42290
44723
|
/**
|
|
42291
44724
|
* @param {number} value
|
|
42292
44725
|
* @param {number=} opt_index
|
|
42293
|
-
* @return {!proto.payment.
|
|
44726
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42294
44727
|
*/
|
|
42295
|
-
proto.payment.
|
|
44728
|
+
proto.payment.AdjustmentSearchRequest.prototype.addUserIds = function(value, opt_index) {
|
|
42296
44729
|
return jspb.Message.addToRepeatedField(this, 2, value, opt_index);
|
|
42297
44730
|
};
|
|
42298
44731
|
|
|
42299
44732
|
|
|
42300
44733
|
/**
|
|
42301
44734
|
* Clears the list making it empty but non-null.
|
|
42302
|
-
* @return {!proto.payment.
|
|
44735
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42303
44736
|
*/
|
|
42304
|
-
proto.payment.
|
|
44737
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearUserIdsList = function() {
|
|
42305
44738
|
return this.setUserIdsList([]);
|
|
42306
44739
|
};
|
|
42307
44740
|
|
|
42308
44741
|
|
|
42309
44742
|
/**
|
|
42310
|
-
*
|
|
42311
|
-
* @return {!Array<string>}
|
|
42312
|
-
*/
|
|
42313
|
-
proto.payment.CompensationSearchRequest.prototype.getCompensationTypesList = function() {
|
|
42314
|
-
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 3));
|
|
42315
|
-
};
|
|
42316
|
-
|
|
42317
|
-
|
|
42318
|
-
/**
|
|
42319
|
-
* @param {!Array<string>} value
|
|
42320
|
-
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42321
|
-
*/
|
|
42322
|
-
proto.payment.CompensationSearchRequest.prototype.setCompensationTypesList = function(value) {
|
|
42323
|
-
return jspb.Message.setField(this, 3, value || []);
|
|
42324
|
-
};
|
|
42325
|
-
|
|
42326
|
-
|
|
42327
|
-
/**
|
|
42328
|
-
* @param {string} value
|
|
42329
|
-
* @param {number=} opt_index
|
|
42330
|
-
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42331
|
-
*/
|
|
42332
|
-
proto.payment.CompensationSearchRequest.prototype.addCompensationTypes = function(value, opt_index) {
|
|
42333
|
-
return jspb.Message.addToRepeatedField(this, 3, value, opt_index);
|
|
42334
|
-
};
|
|
42335
|
-
|
|
42336
|
-
|
|
42337
|
-
/**
|
|
42338
|
-
* Clears the list making it empty but non-null.
|
|
42339
|
-
* @return {!proto.payment.CompensationSearchRequest} returns this
|
|
42340
|
-
*/
|
|
42341
|
-
proto.payment.CompensationSearchRequest.prototype.clearCompensationTypesList = function() {
|
|
42342
|
-
return this.setCompensationTypesList([]);
|
|
42343
|
-
};
|
|
42344
|
-
|
|
42345
|
-
|
|
42346
|
-
/**
|
|
42347
|
-
* optional string transaction_code = 4;
|
|
44743
|
+
* optional string transaction_code = 3;
|
|
42348
44744
|
* @return {string}
|
|
42349
44745
|
*/
|
|
42350
|
-
proto.payment.
|
|
42351
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
44746
|
+
proto.payment.AdjustmentSearchRequest.prototype.getTransactionCode = function() {
|
|
44747
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
42352
44748
|
};
|
|
42353
44749
|
|
|
42354
44750
|
|
|
42355
44751
|
/**
|
|
42356
44752
|
* @param {string} value
|
|
42357
|
-
* @return {!proto.payment.
|
|
44753
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42358
44754
|
*/
|
|
42359
|
-
proto.payment.
|
|
42360
|
-
return jspb.Message.setField(this,
|
|
44755
|
+
proto.payment.AdjustmentSearchRequest.prototype.setTransactionCode = function(value) {
|
|
44756
|
+
return jspb.Message.setField(this, 3, value);
|
|
42361
44757
|
};
|
|
42362
44758
|
|
|
42363
44759
|
|
|
42364
44760
|
/**
|
|
42365
44761
|
* Clears the field making it undefined.
|
|
42366
|
-
* @return {!proto.payment.
|
|
44762
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42367
44763
|
*/
|
|
42368
|
-
proto.payment.
|
|
42369
|
-
return jspb.Message.setField(this,
|
|
44764
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearTransactionCode = function() {
|
|
44765
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
42370
44766
|
};
|
|
42371
44767
|
|
|
42372
44768
|
|
|
@@ -42374,72 +44770,72 @@ proto.payment.CompensationSearchRequest.prototype.clearTransactionCode = functio
|
|
|
42374
44770
|
* Returns whether this field is set.
|
|
42375
44771
|
* @return {boolean}
|
|
42376
44772
|
*/
|
|
42377
|
-
proto.payment.
|
|
42378
|
-
return jspb.Message.getField(this,
|
|
44773
|
+
proto.payment.AdjustmentSearchRequest.prototype.hasTransactionCode = function() {
|
|
44774
|
+
return jspb.Message.getField(this, 3) != null;
|
|
42379
44775
|
};
|
|
42380
44776
|
|
|
42381
44777
|
|
|
42382
44778
|
/**
|
|
42383
|
-
* repeated string operation_status_codes =
|
|
44779
|
+
* repeated string operation_status_codes = 4;
|
|
42384
44780
|
* @return {!Array<string>}
|
|
42385
44781
|
*/
|
|
42386
|
-
proto.payment.
|
|
42387
|
-
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this,
|
|
44782
|
+
proto.payment.AdjustmentSearchRequest.prototype.getOperationStatusCodesList = function() {
|
|
44783
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 4));
|
|
42388
44784
|
};
|
|
42389
44785
|
|
|
42390
44786
|
|
|
42391
44787
|
/**
|
|
42392
44788
|
* @param {!Array<string>} value
|
|
42393
|
-
* @return {!proto.payment.
|
|
44789
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42394
44790
|
*/
|
|
42395
|
-
proto.payment.
|
|
42396
|
-
return jspb.Message.setField(this,
|
|
44791
|
+
proto.payment.AdjustmentSearchRequest.prototype.setOperationStatusCodesList = function(value) {
|
|
44792
|
+
return jspb.Message.setField(this, 4, value || []);
|
|
42397
44793
|
};
|
|
42398
44794
|
|
|
42399
44795
|
|
|
42400
44796
|
/**
|
|
42401
44797
|
* @param {string} value
|
|
42402
44798
|
* @param {number=} opt_index
|
|
42403
|
-
* @return {!proto.payment.
|
|
44799
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42404
44800
|
*/
|
|
42405
|
-
proto.payment.
|
|
42406
|
-
return jspb.Message.addToRepeatedField(this,
|
|
44801
|
+
proto.payment.AdjustmentSearchRequest.prototype.addOperationStatusCodes = function(value, opt_index) {
|
|
44802
|
+
return jspb.Message.addToRepeatedField(this, 4, value, opt_index);
|
|
42407
44803
|
};
|
|
42408
44804
|
|
|
42409
44805
|
|
|
42410
44806
|
/**
|
|
42411
44807
|
* Clears the list making it empty but non-null.
|
|
42412
|
-
* @return {!proto.payment.
|
|
44808
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42413
44809
|
*/
|
|
42414
|
-
proto.payment.
|
|
44810
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearOperationStatusCodesList = function() {
|
|
42415
44811
|
return this.setOperationStatusCodesList([]);
|
|
42416
44812
|
};
|
|
42417
44813
|
|
|
42418
44814
|
|
|
42419
44815
|
/**
|
|
42420
|
-
* optional string created_from =
|
|
44816
|
+
* optional string created_from = 5;
|
|
42421
44817
|
* @return {string}
|
|
42422
44818
|
*/
|
|
42423
|
-
proto.payment.
|
|
42424
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
44819
|
+
proto.payment.AdjustmentSearchRequest.prototype.getCreatedFrom = function() {
|
|
44820
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
42425
44821
|
};
|
|
42426
44822
|
|
|
42427
44823
|
|
|
42428
44824
|
/**
|
|
42429
44825
|
* @param {string} value
|
|
42430
|
-
* @return {!proto.payment.
|
|
44826
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42431
44827
|
*/
|
|
42432
|
-
proto.payment.
|
|
42433
|
-
return jspb.Message.setField(this,
|
|
44828
|
+
proto.payment.AdjustmentSearchRequest.prototype.setCreatedFrom = function(value) {
|
|
44829
|
+
return jspb.Message.setField(this, 5, value);
|
|
42434
44830
|
};
|
|
42435
44831
|
|
|
42436
44832
|
|
|
42437
44833
|
/**
|
|
42438
44834
|
* Clears the field making it undefined.
|
|
42439
|
-
* @return {!proto.payment.
|
|
44835
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42440
44836
|
*/
|
|
42441
|
-
proto.payment.
|
|
42442
|
-
return jspb.Message.setField(this,
|
|
44837
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearCreatedFrom = function() {
|
|
44838
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
42443
44839
|
};
|
|
42444
44840
|
|
|
42445
44841
|
|
|
@@ -42447,35 +44843,35 @@ proto.payment.CompensationSearchRequest.prototype.clearCreatedFrom = function()
|
|
|
42447
44843
|
* Returns whether this field is set.
|
|
42448
44844
|
* @return {boolean}
|
|
42449
44845
|
*/
|
|
42450
|
-
proto.payment.
|
|
42451
|
-
return jspb.Message.getField(this,
|
|
44846
|
+
proto.payment.AdjustmentSearchRequest.prototype.hasCreatedFrom = function() {
|
|
44847
|
+
return jspb.Message.getField(this, 5) != null;
|
|
42452
44848
|
};
|
|
42453
44849
|
|
|
42454
44850
|
|
|
42455
44851
|
/**
|
|
42456
|
-
* optional string created_to =
|
|
44852
|
+
* optional string created_to = 6;
|
|
42457
44853
|
* @return {string}
|
|
42458
44854
|
*/
|
|
42459
|
-
proto.payment.
|
|
42460
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
44855
|
+
proto.payment.AdjustmentSearchRequest.prototype.getCreatedTo = function() {
|
|
44856
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
42461
44857
|
};
|
|
42462
44858
|
|
|
42463
44859
|
|
|
42464
44860
|
/**
|
|
42465
44861
|
* @param {string} value
|
|
42466
|
-
* @return {!proto.payment.
|
|
44862
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42467
44863
|
*/
|
|
42468
|
-
proto.payment.
|
|
42469
|
-
return jspb.Message.setField(this,
|
|
44864
|
+
proto.payment.AdjustmentSearchRequest.prototype.setCreatedTo = function(value) {
|
|
44865
|
+
return jspb.Message.setField(this, 6, value);
|
|
42470
44866
|
};
|
|
42471
44867
|
|
|
42472
44868
|
|
|
42473
44869
|
/**
|
|
42474
44870
|
* Clears the field making it undefined.
|
|
42475
|
-
* @return {!proto.payment.
|
|
44871
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42476
44872
|
*/
|
|
42477
|
-
proto.payment.
|
|
42478
|
-
return jspb.Message.setField(this,
|
|
44873
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearCreatedTo = function() {
|
|
44874
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
42479
44875
|
};
|
|
42480
44876
|
|
|
42481
44877
|
|
|
@@ -42483,72 +44879,72 @@ proto.payment.CompensationSearchRequest.prototype.clearCreatedTo = function() {
|
|
|
42483
44879
|
* Returns whether this field is set.
|
|
42484
44880
|
* @return {boolean}
|
|
42485
44881
|
*/
|
|
42486
|
-
proto.payment.
|
|
42487
|
-
return jspb.Message.getField(this,
|
|
44882
|
+
proto.payment.AdjustmentSearchRequest.prototype.hasCreatedTo = function() {
|
|
44883
|
+
return jspb.Message.getField(this, 6) != null;
|
|
42488
44884
|
};
|
|
42489
44885
|
|
|
42490
44886
|
|
|
42491
44887
|
/**
|
|
42492
|
-
* repeated string currency =
|
|
44888
|
+
* repeated string currency = 7;
|
|
42493
44889
|
* @return {!Array<string>}
|
|
42494
44890
|
*/
|
|
42495
|
-
proto.payment.
|
|
42496
|
-
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this,
|
|
44891
|
+
proto.payment.AdjustmentSearchRequest.prototype.getCurrencyList = function() {
|
|
44892
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 7));
|
|
42497
44893
|
};
|
|
42498
44894
|
|
|
42499
44895
|
|
|
42500
44896
|
/**
|
|
42501
44897
|
* @param {!Array<string>} value
|
|
42502
|
-
* @return {!proto.payment.
|
|
44898
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42503
44899
|
*/
|
|
42504
|
-
proto.payment.
|
|
42505
|
-
return jspb.Message.setField(this,
|
|
44900
|
+
proto.payment.AdjustmentSearchRequest.prototype.setCurrencyList = function(value) {
|
|
44901
|
+
return jspb.Message.setField(this, 7, value || []);
|
|
42506
44902
|
};
|
|
42507
44903
|
|
|
42508
44904
|
|
|
42509
44905
|
/**
|
|
42510
44906
|
* @param {string} value
|
|
42511
44907
|
* @param {number=} opt_index
|
|
42512
|
-
* @return {!proto.payment.
|
|
44908
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42513
44909
|
*/
|
|
42514
|
-
proto.payment.
|
|
42515
|
-
return jspb.Message.addToRepeatedField(this,
|
|
44910
|
+
proto.payment.AdjustmentSearchRequest.prototype.addCurrency = function(value, opt_index) {
|
|
44911
|
+
return jspb.Message.addToRepeatedField(this, 7, value, opt_index);
|
|
42516
44912
|
};
|
|
42517
44913
|
|
|
42518
44914
|
|
|
42519
44915
|
/**
|
|
42520
44916
|
* Clears the list making it empty but non-null.
|
|
42521
|
-
* @return {!proto.payment.
|
|
44917
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42522
44918
|
*/
|
|
42523
|
-
proto.payment.
|
|
44919
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearCurrencyList = function() {
|
|
42524
44920
|
return this.setCurrencyList([]);
|
|
42525
44921
|
};
|
|
42526
44922
|
|
|
42527
44923
|
|
|
42528
44924
|
/**
|
|
42529
|
-
* optional string player_nickname =
|
|
44925
|
+
* optional string player_nickname = 8;
|
|
42530
44926
|
* @return {string}
|
|
42531
44927
|
*/
|
|
42532
|
-
proto.payment.
|
|
42533
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
44928
|
+
proto.payment.AdjustmentSearchRequest.prototype.getPlayerNickname = function() {
|
|
44929
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
42534
44930
|
};
|
|
42535
44931
|
|
|
42536
44932
|
|
|
42537
44933
|
/**
|
|
42538
44934
|
* @param {string} value
|
|
42539
|
-
* @return {!proto.payment.
|
|
44935
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42540
44936
|
*/
|
|
42541
|
-
proto.payment.
|
|
42542
|
-
return jspb.Message.setField(this,
|
|
44937
|
+
proto.payment.AdjustmentSearchRequest.prototype.setPlayerNickname = function(value) {
|
|
44938
|
+
return jspb.Message.setField(this, 8, value);
|
|
42543
44939
|
};
|
|
42544
44940
|
|
|
42545
44941
|
|
|
42546
44942
|
/**
|
|
42547
44943
|
* Clears the field making it undefined.
|
|
42548
|
-
* @return {!proto.payment.
|
|
44944
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42549
44945
|
*/
|
|
42550
|
-
proto.payment.
|
|
42551
|
-
return jspb.Message.setField(this,
|
|
44946
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearPlayerNickname = function() {
|
|
44947
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
42552
44948
|
};
|
|
42553
44949
|
|
|
42554
44950
|
|
|
@@ -42556,72 +44952,72 @@ proto.payment.CompensationSearchRequest.prototype.clearPlayerNickname = function
|
|
|
42556
44952
|
* Returns whether this field is set.
|
|
42557
44953
|
* @return {boolean}
|
|
42558
44954
|
*/
|
|
42559
|
-
proto.payment.
|
|
42560
|
-
return jspb.Message.getField(this,
|
|
44955
|
+
proto.payment.AdjustmentSearchRequest.prototype.hasPlayerNickname = function() {
|
|
44956
|
+
return jspb.Message.getField(this, 8) != null;
|
|
42561
44957
|
};
|
|
42562
44958
|
|
|
42563
44959
|
|
|
42564
44960
|
/**
|
|
42565
|
-
* repeated int32 operator_ids =
|
|
44961
|
+
* repeated int32 operator_ids = 9;
|
|
42566
44962
|
* @return {!Array<number>}
|
|
42567
44963
|
*/
|
|
42568
|
-
proto.payment.
|
|
42569
|
-
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this,
|
|
44964
|
+
proto.payment.AdjustmentSearchRequest.prototype.getOperatorIdsList = function() {
|
|
44965
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 9));
|
|
42570
44966
|
};
|
|
42571
44967
|
|
|
42572
44968
|
|
|
42573
44969
|
/**
|
|
42574
44970
|
* @param {!Array<number>} value
|
|
42575
|
-
* @return {!proto.payment.
|
|
44971
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42576
44972
|
*/
|
|
42577
|
-
proto.payment.
|
|
42578
|
-
return jspb.Message.setField(this,
|
|
44973
|
+
proto.payment.AdjustmentSearchRequest.prototype.setOperatorIdsList = function(value) {
|
|
44974
|
+
return jspb.Message.setField(this, 9, value || []);
|
|
42579
44975
|
};
|
|
42580
44976
|
|
|
42581
44977
|
|
|
42582
44978
|
/**
|
|
42583
44979
|
* @param {number} value
|
|
42584
44980
|
* @param {number=} opt_index
|
|
42585
|
-
* @return {!proto.payment.
|
|
44981
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42586
44982
|
*/
|
|
42587
|
-
proto.payment.
|
|
42588
|
-
return jspb.Message.addToRepeatedField(this,
|
|
44983
|
+
proto.payment.AdjustmentSearchRequest.prototype.addOperatorIds = function(value, opt_index) {
|
|
44984
|
+
return jspb.Message.addToRepeatedField(this, 9, value, opt_index);
|
|
42589
44985
|
};
|
|
42590
44986
|
|
|
42591
44987
|
|
|
42592
44988
|
/**
|
|
42593
44989
|
* Clears the list making it empty but non-null.
|
|
42594
|
-
* @return {!proto.payment.
|
|
44990
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42595
44991
|
*/
|
|
42596
|
-
proto.payment.
|
|
44992
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearOperatorIdsList = function() {
|
|
42597
44993
|
return this.setOperatorIdsList([]);
|
|
42598
44994
|
};
|
|
42599
44995
|
|
|
42600
44996
|
|
|
42601
44997
|
/**
|
|
42602
|
-
* optional int64 amount_minor_from =
|
|
44998
|
+
* optional int64 amount_minor_from = 10;
|
|
42603
44999
|
* @return {number}
|
|
42604
45000
|
*/
|
|
42605
|
-
proto.payment.
|
|
42606
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
45001
|
+
proto.payment.AdjustmentSearchRequest.prototype.getAmountMinorFrom = function() {
|
|
45002
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 10, 0));
|
|
42607
45003
|
};
|
|
42608
45004
|
|
|
42609
45005
|
|
|
42610
45006
|
/**
|
|
42611
45007
|
* @param {number} value
|
|
42612
|
-
* @return {!proto.payment.
|
|
45008
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42613
45009
|
*/
|
|
42614
|
-
proto.payment.
|
|
42615
|
-
return jspb.Message.setField(this,
|
|
45010
|
+
proto.payment.AdjustmentSearchRequest.prototype.setAmountMinorFrom = function(value) {
|
|
45011
|
+
return jspb.Message.setField(this, 10, value);
|
|
42616
45012
|
};
|
|
42617
45013
|
|
|
42618
45014
|
|
|
42619
45015
|
/**
|
|
42620
45016
|
* Clears the field making it undefined.
|
|
42621
|
-
* @return {!proto.payment.
|
|
45017
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42622
45018
|
*/
|
|
42623
|
-
proto.payment.
|
|
42624
|
-
return jspb.Message.setField(this,
|
|
45019
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearAmountMinorFrom = function() {
|
|
45020
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
42625
45021
|
};
|
|
42626
45022
|
|
|
42627
45023
|
|
|
@@ -42629,35 +45025,35 @@ proto.payment.CompensationSearchRequest.prototype.clearAmountMinorFrom = functio
|
|
|
42629
45025
|
* Returns whether this field is set.
|
|
42630
45026
|
* @return {boolean}
|
|
42631
45027
|
*/
|
|
42632
|
-
proto.payment.
|
|
42633
|
-
return jspb.Message.getField(this,
|
|
45028
|
+
proto.payment.AdjustmentSearchRequest.prototype.hasAmountMinorFrom = function() {
|
|
45029
|
+
return jspb.Message.getField(this, 10) != null;
|
|
42634
45030
|
};
|
|
42635
45031
|
|
|
42636
45032
|
|
|
42637
45033
|
/**
|
|
42638
|
-
* optional int64 amount_minor_to =
|
|
45034
|
+
* optional int64 amount_minor_to = 11;
|
|
42639
45035
|
* @return {number}
|
|
42640
45036
|
*/
|
|
42641
|
-
proto.payment.
|
|
42642
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
45037
|
+
proto.payment.AdjustmentSearchRequest.prototype.getAmountMinorTo = function() {
|
|
45038
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 11, 0));
|
|
42643
45039
|
};
|
|
42644
45040
|
|
|
42645
45041
|
|
|
42646
45042
|
/**
|
|
42647
45043
|
* @param {number} value
|
|
42648
|
-
* @return {!proto.payment.
|
|
45044
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42649
45045
|
*/
|
|
42650
|
-
proto.payment.
|
|
42651
|
-
return jspb.Message.setField(this,
|
|
45046
|
+
proto.payment.AdjustmentSearchRequest.prototype.setAmountMinorTo = function(value) {
|
|
45047
|
+
return jspb.Message.setField(this, 11, value);
|
|
42652
45048
|
};
|
|
42653
45049
|
|
|
42654
45050
|
|
|
42655
45051
|
/**
|
|
42656
45052
|
* Clears the field making it undefined.
|
|
42657
|
-
* @return {!proto.payment.
|
|
45053
|
+
* @return {!proto.payment.AdjustmentSearchRequest} returns this
|
|
42658
45054
|
*/
|
|
42659
|
-
proto.payment.
|
|
42660
|
-
return jspb.Message.setField(this,
|
|
45055
|
+
proto.payment.AdjustmentSearchRequest.prototype.clearAmountMinorTo = function() {
|
|
45056
|
+
return jspb.Message.setField(this, 11, undefined);
|
|
42661
45057
|
};
|
|
42662
45058
|
|
|
42663
45059
|
|
|
@@ -42665,8 +45061,8 @@ proto.payment.CompensationSearchRequest.prototype.clearAmountMinorTo = function(
|
|
|
42665
45061
|
* Returns whether this field is set.
|
|
42666
45062
|
* @return {boolean}
|
|
42667
45063
|
*/
|
|
42668
|
-
proto.payment.
|
|
42669
|
-
return jspb.Message.getField(this,
|
|
45064
|
+
proto.payment.AdjustmentSearchRequest.prototype.hasAmountMinorTo = function() {
|
|
45065
|
+
return jspb.Message.getField(this, 11) != null;
|
|
42670
45066
|
};
|
|
42671
45067
|
|
|
42672
45068
|
|
|
@@ -42686,8 +45082,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
42686
45082
|
* http://goto/soy-param-migration
|
|
42687
45083
|
* @return {!Object}
|
|
42688
45084
|
*/
|
|
42689
|
-
proto.payment.
|
|
42690
|
-
return proto.payment.
|
|
45085
|
+
proto.payment.AdjustmentItem.prototype.toObject = function(opt_includeInstance) {
|
|
45086
|
+
return proto.payment.AdjustmentItem.toObject(opt_includeInstance, this);
|
|
42691
45087
|
};
|
|
42692
45088
|
|
|
42693
45089
|
|
|
@@ -42696,31 +45092,29 @@ proto.payment.CompensationItem.prototype.toObject = function(opt_includeInstance
|
|
|
42696
45092
|
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
42697
45093
|
* the JSPB instance for transitional soy proto support:
|
|
42698
45094
|
* http://goto/soy-param-migration
|
|
42699
|
-
* @param {!proto.payment.
|
|
45095
|
+
* @param {!proto.payment.AdjustmentItem} msg The msg instance to transform.
|
|
42700
45096
|
* @return {!Object}
|
|
42701
45097
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
42702
45098
|
*/
|
|
42703
|
-
proto.payment.
|
|
45099
|
+
proto.payment.AdjustmentItem.toObject = function(includeInstance, msg) {
|
|
42704
45100
|
var f, obj = {
|
|
42705
45101
|
operationId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
42706
45102
|
operationPublicId: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
42707
45103
|
userId: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
42708
|
-
|
|
42709
|
-
|
|
42710
|
-
|
|
42711
|
-
|
|
42712
|
-
|
|
42713
|
-
|
|
42714
|
-
|
|
42715
|
-
|
|
42716
|
-
|
|
42717
|
-
|
|
42718
|
-
|
|
42719
|
-
|
|
42720
|
-
|
|
42721
|
-
|
|
42722
|
-
operatorName: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
42723
|
-
operatorEmail: jspb.Message.getFieldWithDefault(msg, 19, "")
|
|
45104
|
+
transactionCode: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
45105
|
+
amountMinor: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
45106
|
+
currency: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
45107
|
+
currencyScale: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
45108
|
+
wagerMultiplier: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
45109
|
+
internalComment: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
45110
|
+
operatorId: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
|
45111
|
+
statusCode: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
45112
|
+
createdAt: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
45113
|
+
completedAt: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
45114
|
+
playerNickname: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
45115
|
+
playerEmail: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
45116
|
+
operatorName: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
45117
|
+
operatorEmail: jspb.Message.getFieldWithDefault(msg, 17, "")
|
|
42724
45118
|
};
|
|
42725
45119
|
|
|
42726
45120
|
if (includeInstance) {
|
|
@@ -42734,23 +45128,23 @@ proto.payment.CompensationItem.toObject = function(includeInstance, msg) {
|
|
|
42734
45128
|
/**
|
|
42735
45129
|
* Deserializes binary data (in protobuf wire format).
|
|
42736
45130
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
42737
|
-
* @return {!proto.payment.
|
|
45131
|
+
* @return {!proto.payment.AdjustmentItem}
|
|
42738
45132
|
*/
|
|
42739
|
-
proto.payment.
|
|
45133
|
+
proto.payment.AdjustmentItem.deserializeBinary = function(bytes) {
|
|
42740
45134
|
var reader = new jspb.BinaryReader(bytes);
|
|
42741
|
-
var msg = new proto.payment.
|
|
42742
|
-
return proto.payment.
|
|
45135
|
+
var msg = new proto.payment.AdjustmentItem;
|
|
45136
|
+
return proto.payment.AdjustmentItem.deserializeBinaryFromReader(msg, reader);
|
|
42743
45137
|
};
|
|
42744
45138
|
|
|
42745
45139
|
|
|
42746
45140
|
/**
|
|
42747
45141
|
* Deserializes binary data (in protobuf wire format) from the
|
|
42748
45142
|
* given reader into the given message object.
|
|
42749
|
-
* @param {!proto.payment.
|
|
45143
|
+
* @param {!proto.payment.AdjustmentItem} msg The message object to deserialize into.
|
|
42750
45144
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
42751
|
-
* @return {!proto.payment.
|
|
45145
|
+
* @return {!proto.payment.AdjustmentItem}
|
|
42752
45146
|
*/
|
|
42753
|
-
proto.payment.
|
|
45147
|
+
proto.payment.AdjustmentItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
42754
45148
|
while (reader.nextField()) {
|
|
42755
45149
|
if (reader.isEndGroup()) {
|
|
42756
45150
|
break;
|
|
@@ -42770,66 +45164,58 @@ proto.payment.CompensationItem.deserializeBinaryFromReader = function(msg, reade
|
|
|
42770
45164
|
msg.setUserId(value);
|
|
42771
45165
|
break;
|
|
42772
45166
|
case 4:
|
|
42773
|
-
var value = /** @type {string} */ (reader.readString());
|
|
42774
|
-
msg.setCompensationType(value);
|
|
42775
|
-
break;
|
|
42776
|
-
case 5:
|
|
42777
45167
|
var value = /** @type {string} */ (reader.readString());
|
|
42778
45168
|
msg.setTransactionCode(value);
|
|
42779
45169
|
break;
|
|
42780
|
-
case
|
|
45170
|
+
case 5:
|
|
42781
45171
|
var value = /** @type {number} */ (reader.readInt64());
|
|
42782
45172
|
msg.setAmountMinor(value);
|
|
42783
45173
|
break;
|
|
42784
|
-
case
|
|
45174
|
+
case 6:
|
|
42785
45175
|
var value = /** @type {string} */ (reader.readString());
|
|
42786
45176
|
msg.setCurrency(value);
|
|
42787
45177
|
break;
|
|
42788
|
-
case
|
|
45178
|
+
case 7:
|
|
42789
45179
|
var value = /** @type {number} */ (reader.readInt32());
|
|
42790
45180
|
msg.setCurrencyScale(value);
|
|
42791
45181
|
break;
|
|
42792
|
-
case
|
|
45182
|
+
case 8:
|
|
42793
45183
|
var value = /** @type {string} */ (reader.readString());
|
|
42794
45184
|
msg.setWagerMultiplier(value);
|
|
42795
45185
|
break;
|
|
42796
|
-
case
|
|
42797
|
-
var value = /** @type {string} */ (reader.readString());
|
|
42798
|
-
msg.setPromoOrBonusId(value);
|
|
42799
|
-
break;
|
|
42800
|
-
case 11:
|
|
45186
|
+
case 9:
|
|
42801
45187
|
var value = /** @type {string} */ (reader.readString());
|
|
42802
45188
|
msg.setInternalComment(value);
|
|
42803
45189
|
break;
|
|
42804
|
-
case
|
|
45190
|
+
case 10:
|
|
42805
45191
|
var value = /** @type {number} */ (reader.readInt32());
|
|
42806
45192
|
msg.setOperatorId(value);
|
|
42807
45193
|
break;
|
|
42808
|
-
case
|
|
45194
|
+
case 11:
|
|
42809
45195
|
var value = /** @type {string} */ (reader.readString());
|
|
42810
45196
|
msg.setStatusCode(value);
|
|
42811
45197
|
break;
|
|
42812
|
-
case
|
|
45198
|
+
case 12:
|
|
42813
45199
|
var value = /** @type {string} */ (reader.readString());
|
|
42814
45200
|
msg.setCreatedAt(value);
|
|
42815
45201
|
break;
|
|
42816
|
-
case
|
|
45202
|
+
case 13:
|
|
42817
45203
|
var value = /** @type {string} */ (reader.readString());
|
|
42818
45204
|
msg.setCompletedAt(value);
|
|
42819
45205
|
break;
|
|
42820
|
-
case
|
|
45206
|
+
case 14:
|
|
42821
45207
|
var value = /** @type {string} */ (reader.readString());
|
|
42822
45208
|
msg.setPlayerNickname(value);
|
|
42823
45209
|
break;
|
|
42824
|
-
case
|
|
45210
|
+
case 15:
|
|
42825
45211
|
var value = /** @type {string} */ (reader.readString());
|
|
42826
45212
|
msg.setPlayerEmail(value);
|
|
42827
45213
|
break;
|
|
42828
|
-
case
|
|
45214
|
+
case 16:
|
|
42829
45215
|
var value = /** @type {string} */ (reader.readString());
|
|
42830
45216
|
msg.setOperatorName(value);
|
|
42831
45217
|
break;
|
|
42832
|
-
case
|
|
45218
|
+
case 17:
|
|
42833
45219
|
var value = /** @type {string} */ (reader.readString());
|
|
42834
45220
|
msg.setOperatorEmail(value);
|
|
42835
45221
|
break;
|
|
@@ -42846,9 +45232,9 @@ proto.payment.CompensationItem.deserializeBinaryFromReader = function(msg, reade
|
|
|
42846
45232
|
* Serializes the message to binary data (in protobuf wire format).
|
|
42847
45233
|
* @return {!Uint8Array}
|
|
42848
45234
|
*/
|
|
42849
|
-
proto.payment.
|
|
45235
|
+
proto.payment.AdjustmentItem.prototype.serializeBinary = function() {
|
|
42850
45236
|
var writer = new jspb.BinaryWriter();
|
|
42851
|
-
proto.payment.
|
|
45237
|
+
proto.payment.AdjustmentItem.serializeBinaryToWriter(this, writer);
|
|
42852
45238
|
return writer.getResultBuffer();
|
|
42853
45239
|
};
|
|
42854
45240
|
|
|
@@ -42856,11 +45242,11 @@ proto.payment.CompensationItem.prototype.serializeBinary = function() {
|
|
|
42856
45242
|
/**
|
|
42857
45243
|
* Serializes the given message to binary data (in protobuf wire
|
|
42858
45244
|
* format), writing to the given BinaryWriter.
|
|
42859
|
-
* @param {!proto.payment.
|
|
45245
|
+
* @param {!proto.payment.AdjustmentItem} message
|
|
42860
45246
|
* @param {!jspb.BinaryWriter} writer
|
|
42861
45247
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
42862
45248
|
*/
|
|
42863
|
-
proto.payment.
|
|
45249
|
+
proto.payment.AdjustmentItem.serializeBinaryToWriter = function(message, writer) {
|
|
42864
45250
|
var f = undefined;
|
|
42865
45251
|
f = message.getOperationId();
|
|
42866
45252
|
if (f !== 0) {
|
|
@@ -42883,78 +45269,78 @@ proto.payment.CompensationItem.serializeBinaryToWriter = function(message, write
|
|
|
42883
45269
|
f
|
|
42884
45270
|
);
|
|
42885
45271
|
}
|
|
42886
|
-
f = message.getCompensationType();
|
|
42887
|
-
if (f.length > 0) {
|
|
42888
|
-
writer.writeString(
|
|
42889
|
-
4,
|
|
42890
|
-
f
|
|
42891
|
-
);
|
|
42892
|
-
}
|
|
42893
45272
|
f = message.getTransactionCode();
|
|
42894
45273
|
if (f.length > 0) {
|
|
42895
45274
|
writer.writeString(
|
|
42896
|
-
|
|
45275
|
+
4,
|
|
42897
45276
|
f
|
|
42898
45277
|
);
|
|
42899
45278
|
}
|
|
42900
45279
|
f = message.getAmountMinor();
|
|
42901
45280
|
if (f !== 0) {
|
|
42902
45281
|
writer.writeInt64(
|
|
42903
|
-
|
|
45282
|
+
5,
|
|
42904
45283
|
f
|
|
42905
45284
|
);
|
|
42906
45285
|
}
|
|
42907
45286
|
f = message.getCurrency();
|
|
42908
45287
|
if (f.length > 0) {
|
|
42909
45288
|
writer.writeString(
|
|
42910
|
-
|
|
45289
|
+
6,
|
|
42911
45290
|
f
|
|
42912
45291
|
);
|
|
42913
45292
|
}
|
|
42914
45293
|
f = message.getCurrencyScale();
|
|
42915
45294
|
if (f !== 0) {
|
|
42916
45295
|
writer.writeInt32(
|
|
42917
|
-
|
|
45296
|
+
7,
|
|
42918
45297
|
f
|
|
42919
45298
|
);
|
|
42920
45299
|
}
|
|
42921
45300
|
f = message.getWagerMultiplier();
|
|
42922
45301
|
if (f.length > 0) {
|
|
42923
45302
|
writer.writeString(
|
|
42924
|
-
|
|
42925
|
-
f
|
|
42926
|
-
);
|
|
42927
|
-
}
|
|
42928
|
-
f = /** @type {string} */ (jspb.Message.getField(message, 10));
|
|
42929
|
-
if (f != null) {
|
|
42930
|
-
writer.writeString(
|
|
42931
|
-
10,
|
|
45303
|
+
8,
|
|
42932
45304
|
f
|
|
42933
45305
|
);
|
|
42934
45306
|
}
|
|
42935
45307
|
f = message.getInternalComment();
|
|
42936
45308
|
if (f.length > 0) {
|
|
42937
45309
|
writer.writeString(
|
|
42938
|
-
|
|
45310
|
+
9,
|
|
42939
45311
|
f
|
|
42940
45312
|
);
|
|
42941
45313
|
}
|
|
42942
45314
|
f = message.getOperatorId();
|
|
42943
45315
|
if (f !== 0) {
|
|
42944
45316
|
writer.writeInt32(
|
|
42945
|
-
|
|
45317
|
+
10,
|
|
42946
45318
|
f
|
|
42947
45319
|
);
|
|
42948
45320
|
}
|
|
42949
45321
|
f = message.getStatusCode();
|
|
42950
45322
|
if (f.length > 0) {
|
|
42951
45323
|
writer.writeString(
|
|
42952
|
-
|
|
45324
|
+
11,
|
|
42953
45325
|
f
|
|
42954
45326
|
);
|
|
42955
45327
|
}
|
|
42956
45328
|
f = message.getCreatedAt();
|
|
42957
45329
|
if (f.length > 0) {
|
|
45330
|
+
writer.writeString(
|
|
45331
|
+
12,
|
|
45332
|
+
f
|
|
45333
|
+
);
|
|
45334
|
+
}
|
|
45335
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
|
45336
|
+
if (f != null) {
|
|
45337
|
+
writer.writeString(
|
|
45338
|
+
13,
|
|
45339
|
+
f
|
|
45340
|
+
);
|
|
45341
|
+
}
|
|
45342
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 14));
|
|
45343
|
+
if (f != null) {
|
|
42958
45344
|
writer.writeString(
|
|
42959
45345
|
14,
|
|
42960
45346
|
f
|
|
@@ -42981,20 +45367,6 @@ proto.payment.CompensationItem.serializeBinaryToWriter = function(message, write
|
|
|
42981
45367
|
f
|
|
42982
45368
|
);
|
|
42983
45369
|
}
|
|
42984
|
-
f = /** @type {string} */ (jspb.Message.getField(message, 18));
|
|
42985
|
-
if (f != null) {
|
|
42986
|
-
writer.writeString(
|
|
42987
|
-
18,
|
|
42988
|
-
f
|
|
42989
|
-
);
|
|
42990
|
-
}
|
|
42991
|
-
f = /** @type {string} */ (jspb.Message.getField(message, 19));
|
|
42992
|
-
if (f != null) {
|
|
42993
|
-
writer.writeString(
|
|
42994
|
-
19,
|
|
42995
|
-
f
|
|
42996
|
-
);
|
|
42997
|
-
}
|
|
42998
45370
|
};
|
|
42999
45371
|
|
|
43000
45372
|
|
|
@@ -43002,16 +45374,16 @@ proto.payment.CompensationItem.serializeBinaryToWriter = function(message, write
|
|
|
43002
45374
|
* optional int32 operation_id = 1;
|
|
43003
45375
|
* @return {number}
|
|
43004
45376
|
*/
|
|
43005
|
-
proto.payment.
|
|
45377
|
+
proto.payment.AdjustmentItem.prototype.getOperationId = function() {
|
|
43006
45378
|
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
43007
45379
|
};
|
|
43008
45380
|
|
|
43009
45381
|
|
|
43010
45382
|
/**
|
|
43011
45383
|
* @param {number} value
|
|
43012
|
-
* @return {!proto.payment.
|
|
45384
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43013
45385
|
*/
|
|
43014
|
-
proto.payment.
|
|
45386
|
+
proto.payment.AdjustmentItem.prototype.setOperationId = function(value) {
|
|
43015
45387
|
return jspb.Message.setProto3IntField(this, 1, value);
|
|
43016
45388
|
};
|
|
43017
45389
|
|
|
@@ -43020,16 +45392,16 @@ proto.payment.CompensationItem.prototype.setOperationId = function(value) {
|
|
|
43020
45392
|
* optional string operation_public_id = 2;
|
|
43021
45393
|
* @return {string}
|
|
43022
45394
|
*/
|
|
43023
|
-
proto.payment.
|
|
45395
|
+
proto.payment.AdjustmentItem.prototype.getOperationPublicId = function() {
|
|
43024
45396
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
43025
45397
|
};
|
|
43026
45398
|
|
|
43027
45399
|
|
|
43028
45400
|
/**
|
|
43029
45401
|
* @param {string} value
|
|
43030
|
-
* @return {!proto.payment.
|
|
45402
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43031
45403
|
*/
|
|
43032
|
-
proto.payment.
|
|
45404
|
+
proto.payment.AdjustmentItem.prototype.setOperationPublicId = function(value) {
|
|
43033
45405
|
return jspb.Message.setProto3StringField(this, 2, value);
|
|
43034
45406
|
};
|
|
43035
45407
|
|
|
@@ -43038,260 +45410,206 @@ proto.payment.CompensationItem.prototype.setOperationPublicId = function(value)
|
|
|
43038
45410
|
* optional int32 user_id = 3;
|
|
43039
45411
|
* @return {number}
|
|
43040
45412
|
*/
|
|
43041
|
-
proto.payment.
|
|
45413
|
+
proto.payment.AdjustmentItem.prototype.getUserId = function() {
|
|
43042
45414
|
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
43043
45415
|
};
|
|
43044
45416
|
|
|
43045
45417
|
|
|
43046
45418
|
/**
|
|
43047
45419
|
* @param {number} value
|
|
43048
|
-
* @return {!proto.payment.
|
|
45420
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43049
45421
|
*/
|
|
43050
|
-
proto.payment.
|
|
45422
|
+
proto.payment.AdjustmentItem.prototype.setUserId = function(value) {
|
|
43051
45423
|
return jspb.Message.setProto3IntField(this, 3, value);
|
|
43052
45424
|
};
|
|
43053
45425
|
|
|
43054
45426
|
|
|
43055
45427
|
/**
|
|
43056
|
-
* optional string
|
|
45428
|
+
* optional string transaction_code = 4;
|
|
43057
45429
|
* @return {string}
|
|
43058
45430
|
*/
|
|
43059
|
-
proto.payment.
|
|
45431
|
+
proto.payment.AdjustmentItem.prototype.getTransactionCode = function() {
|
|
43060
45432
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
43061
45433
|
};
|
|
43062
45434
|
|
|
43063
45435
|
|
|
43064
45436
|
/**
|
|
43065
45437
|
* @param {string} value
|
|
43066
|
-
* @return {!proto.payment.
|
|
45438
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43067
45439
|
*/
|
|
43068
|
-
proto.payment.
|
|
45440
|
+
proto.payment.AdjustmentItem.prototype.setTransactionCode = function(value) {
|
|
43069
45441
|
return jspb.Message.setProto3StringField(this, 4, value);
|
|
43070
45442
|
};
|
|
43071
45443
|
|
|
43072
45444
|
|
|
43073
45445
|
/**
|
|
43074
|
-
* optional
|
|
43075
|
-
* @return {string}
|
|
43076
|
-
*/
|
|
43077
|
-
proto.payment.CompensationItem.prototype.getTransactionCode = function() {
|
|
43078
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
43079
|
-
};
|
|
43080
|
-
|
|
43081
|
-
|
|
43082
|
-
/**
|
|
43083
|
-
* @param {string} value
|
|
43084
|
-
* @return {!proto.payment.CompensationItem} returns this
|
|
43085
|
-
*/
|
|
43086
|
-
proto.payment.CompensationItem.prototype.setTransactionCode = function(value) {
|
|
43087
|
-
return jspb.Message.setProto3StringField(this, 5, value);
|
|
43088
|
-
};
|
|
43089
|
-
|
|
43090
|
-
|
|
43091
|
-
/**
|
|
43092
|
-
* optional int64 amount_minor = 6;
|
|
45446
|
+
* optional int64 amount_minor = 5;
|
|
43093
45447
|
* @return {number}
|
|
43094
45448
|
*/
|
|
43095
|
-
proto.payment.
|
|
43096
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
45449
|
+
proto.payment.AdjustmentItem.prototype.getAmountMinor = function() {
|
|
45450
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
43097
45451
|
};
|
|
43098
45452
|
|
|
43099
45453
|
|
|
43100
45454
|
/**
|
|
43101
45455
|
* @param {number} value
|
|
43102
|
-
* @return {!proto.payment.
|
|
45456
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43103
45457
|
*/
|
|
43104
|
-
proto.payment.
|
|
43105
|
-
return jspb.Message.setProto3IntField(this,
|
|
45458
|
+
proto.payment.AdjustmentItem.prototype.setAmountMinor = function(value) {
|
|
45459
|
+
return jspb.Message.setProto3IntField(this, 5, value);
|
|
43106
45460
|
};
|
|
43107
45461
|
|
|
43108
45462
|
|
|
43109
45463
|
/**
|
|
43110
|
-
* optional string currency =
|
|
45464
|
+
* optional string currency = 6;
|
|
43111
45465
|
* @return {string}
|
|
43112
45466
|
*/
|
|
43113
|
-
proto.payment.
|
|
43114
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
45467
|
+
proto.payment.AdjustmentItem.prototype.getCurrency = function() {
|
|
45468
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
43115
45469
|
};
|
|
43116
45470
|
|
|
43117
45471
|
|
|
43118
45472
|
/**
|
|
43119
45473
|
* @param {string} value
|
|
43120
|
-
* @return {!proto.payment.
|
|
45474
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43121
45475
|
*/
|
|
43122
|
-
proto.payment.
|
|
43123
|
-
return jspb.Message.setProto3StringField(this,
|
|
45476
|
+
proto.payment.AdjustmentItem.prototype.setCurrency = function(value) {
|
|
45477
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
43124
45478
|
};
|
|
43125
45479
|
|
|
43126
45480
|
|
|
43127
45481
|
/**
|
|
43128
|
-
* optional int32 currency_scale =
|
|
45482
|
+
* optional int32 currency_scale = 7;
|
|
43129
45483
|
* @return {number}
|
|
43130
45484
|
*/
|
|
43131
|
-
proto.payment.
|
|
43132
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
45485
|
+
proto.payment.AdjustmentItem.prototype.getCurrencyScale = function() {
|
|
45486
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
|
|
43133
45487
|
};
|
|
43134
45488
|
|
|
43135
45489
|
|
|
43136
45490
|
/**
|
|
43137
45491
|
* @param {number} value
|
|
43138
|
-
* @return {!proto.payment.
|
|
45492
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43139
45493
|
*/
|
|
43140
|
-
proto.payment.
|
|
43141
|
-
return jspb.Message.setProto3IntField(this,
|
|
43142
|
-
};
|
|
43143
|
-
|
|
43144
|
-
|
|
43145
|
-
/**
|
|
43146
|
-
* optional string wager_multiplier = 9;
|
|
43147
|
-
* @return {string}
|
|
43148
|
-
*/
|
|
43149
|
-
proto.payment.CompensationItem.prototype.getWagerMultiplier = function() {
|
|
43150
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
43151
|
-
};
|
|
43152
|
-
|
|
43153
|
-
|
|
43154
|
-
/**
|
|
43155
|
-
* @param {string} value
|
|
43156
|
-
* @return {!proto.payment.CompensationItem} returns this
|
|
43157
|
-
*/
|
|
43158
|
-
proto.payment.CompensationItem.prototype.setWagerMultiplier = function(value) {
|
|
43159
|
-
return jspb.Message.setProto3StringField(this, 9, value);
|
|
45494
|
+
proto.payment.AdjustmentItem.prototype.setCurrencyScale = function(value) {
|
|
45495
|
+
return jspb.Message.setProto3IntField(this, 7, value);
|
|
43160
45496
|
};
|
|
43161
45497
|
|
|
43162
45498
|
|
|
43163
45499
|
/**
|
|
43164
|
-
* optional string
|
|
45500
|
+
* optional string wager_multiplier = 8;
|
|
43165
45501
|
* @return {string}
|
|
43166
45502
|
*/
|
|
43167
|
-
proto.payment.
|
|
43168
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
45503
|
+
proto.payment.AdjustmentItem.prototype.getWagerMultiplier = function() {
|
|
45504
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
43169
45505
|
};
|
|
43170
45506
|
|
|
43171
45507
|
|
|
43172
45508
|
/**
|
|
43173
45509
|
* @param {string} value
|
|
43174
|
-
* @return {!proto.payment.
|
|
45510
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43175
45511
|
*/
|
|
43176
|
-
proto.payment.
|
|
43177
|
-
return jspb.Message.
|
|
43178
|
-
};
|
|
43179
|
-
|
|
43180
|
-
|
|
43181
|
-
/**
|
|
43182
|
-
* Clears the field making it undefined.
|
|
43183
|
-
* @return {!proto.payment.CompensationItem} returns this
|
|
43184
|
-
*/
|
|
43185
|
-
proto.payment.CompensationItem.prototype.clearPromoOrBonusId = function() {
|
|
43186
|
-
return jspb.Message.setField(this, 10, undefined);
|
|
43187
|
-
};
|
|
43188
|
-
|
|
43189
|
-
|
|
43190
|
-
/**
|
|
43191
|
-
* Returns whether this field is set.
|
|
43192
|
-
* @return {boolean}
|
|
43193
|
-
*/
|
|
43194
|
-
proto.payment.CompensationItem.prototype.hasPromoOrBonusId = function() {
|
|
43195
|
-
return jspb.Message.getField(this, 10) != null;
|
|
45512
|
+
proto.payment.AdjustmentItem.prototype.setWagerMultiplier = function(value) {
|
|
45513
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
43196
45514
|
};
|
|
43197
45515
|
|
|
43198
45516
|
|
|
43199
45517
|
/**
|
|
43200
|
-
* optional string internal_comment =
|
|
45518
|
+
* optional string internal_comment = 9;
|
|
43201
45519
|
* @return {string}
|
|
43202
45520
|
*/
|
|
43203
|
-
proto.payment.
|
|
43204
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
45521
|
+
proto.payment.AdjustmentItem.prototype.getInternalComment = function() {
|
|
45522
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
43205
45523
|
};
|
|
43206
45524
|
|
|
43207
45525
|
|
|
43208
45526
|
/**
|
|
43209
45527
|
* @param {string} value
|
|
43210
|
-
* @return {!proto.payment.
|
|
45528
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43211
45529
|
*/
|
|
43212
|
-
proto.payment.
|
|
43213
|
-
return jspb.Message.setProto3StringField(this,
|
|
45530
|
+
proto.payment.AdjustmentItem.prototype.setInternalComment = function(value) {
|
|
45531
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
43214
45532
|
};
|
|
43215
45533
|
|
|
43216
45534
|
|
|
43217
45535
|
/**
|
|
43218
|
-
* optional int32 operator_id =
|
|
45536
|
+
* optional int32 operator_id = 10;
|
|
43219
45537
|
* @return {number}
|
|
43220
45538
|
*/
|
|
43221
|
-
proto.payment.
|
|
43222
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
45539
|
+
proto.payment.AdjustmentItem.prototype.getOperatorId = function() {
|
|
45540
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 10, 0));
|
|
43223
45541
|
};
|
|
43224
45542
|
|
|
43225
45543
|
|
|
43226
45544
|
/**
|
|
43227
45545
|
* @param {number} value
|
|
43228
|
-
* @return {!proto.payment.
|
|
45546
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43229
45547
|
*/
|
|
43230
|
-
proto.payment.
|
|
43231
|
-
return jspb.Message.setProto3IntField(this,
|
|
45548
|
+
proto.payment.AdjustmentItem.prototype.setOperatorId = function(value) {
|
|
45549
|
+
return jspb.Message.setProto3IntField(this, 10, value);
|
|
43232
45550
|
};
|
|
43233
45551
|
|
|
43234
45552
|
|
|
43235
45553
|
/**
|
|
43236
|
-
* optional string status_code =
|
|
45554
|
+
* optional string status_code = 11;
|
|
43237
45555
|
* @return {string}
|
|
43238
45556
|
*/
|
|
43239
|
-
proto.payment.
|
|
43240
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
45557
|
+
proto.payment.AdjustmentItem.prototype.getStatusCode = function() {
|
|
45558
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
43241
45559
|
};
|
|
43242
45560
|
|
|
43243
45561
|
|
|
43244
45562
|
/**
|
|
43245
45563
|
* @param {string} value
|
|
43246
|
-
* @return {!proto.payment.
|
|
45564
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43247
45565
|
*/
|
|
43248
|
-
proto.payment.
|
|
43249
|
-
return jspb.Message.setProto3StringField(this,
|
|
45566
|
+
proto.payment.AdjustmentItem.prototype.setStatusCode = function(value) {
|
|
45567
|
+
return jspb.Message.setProto3StringField(this, 11, value);
|
|
43250
45568
|
};
|
|
43251
45569
|
|
|
43252
45570
|
|
|
43253
45571
|
/**
|
|
43254
|
-
* optional string created_at =
|
|
45572
|
+
* optional string created_at = 12;
|
|
43255
45573
|
* @return {string}
|
|
43256
45574
|
*/
|
|
43257
|
-
proto.payment.
|
|
43258
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
45575
|
+
proto.payment.AdjustmentItem.prototype.getCreatedAt = function() {
|
|
45576
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
43259
45577
|
};
|
|
43260
45578
|
|
|
43261
45579
|
|
|
43262
45580
|
/**
|
|
43263
45581
|
* @param {string} value
|
|
43264
|
-
* @return {!proto.payment.
|
|
45582
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43265
45583
|
*/
|
|
43266
|
-
proto.payment.
|
|
43267
|
-
return jspb.Message.setProto3StringField(this,
|
|
45584
|
+
proto.payment.AdjustmentItem.prototype.setCreatedAt = function(value) {
|
|
45585
|
+
return jspb.Message.setProto3StringField(this, 12, value);
|
|
43268
45586
|
};
|
|
43269
45587
|
|
|
43270
45588
|
|
|
43271
45589
|
/**
|
|
43272
|
-
* optional string completed_at =
|
|
45590
|
+
* optional string completed_at = 13;
|
|
43273
45591
|
* @return {string}
|
|
43274
45592
|
*/
|
|
43275
|
-
proto.payment.
|
|
43276
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
45593
|
+
proto.payment.AdjustmentItem.prototype.getCompletedAt = function() {
|
|
45594
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
43277
45595
|
};
|
|
43278
45596
|
|
|
43279
45597
|
|
|
43280
45598
|
/**
|
|
43281
45599
|
* @param {string} value
|
|
43282
|
-
* @return {!proto.payment.
|
|
45600
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43283
45601
|
*/
|
|
43284
|
-
proto.payment.
|
|
43285
|
-
return jspb.Message.setField(this,
|
|
45602
|
+
proto.payment.AdjustmentItem.prototype.setCompletedAt = function(value) {
|
|
45603
|
+
return jspb.Message.setField(this, 13, value);
|
|
43286
45604
|
};
|
|
43287
45605
|
|
|
43288
45606
|
|
|
43289
45607
|
/**
|
|
43290
45608
|
* Clears the field making it undefined.
|
|
43291
|
-
* @return {!proto.payment.
|
|
45609
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43292
45610
|
*/
|
|
43293
|
-
proto.payment.
|
|
43294
|
-
return jspb.Message.setField(this,
|
|
45611
|
+
proto.payment.AdjustmentItem.prototype.clearCompletedAt = function() {
|
|
45612
|
+
return jspb.Message.setField(this, 13, undefined);
|
|
43295
45613
|
};
|
|
43296
45614
|
|
|
43297
45615
|
|
|
@@ -43299,35 +45617,35 @@ proto.payment.CompensationItem.prototype.clearCompletedAt = function() {
|
|
|
43299
45617
|
* Returns whether this field is set.
|
|
43300
45618
|
* @return {boolean}
|
|
43301
45619
|
*/
|
|
43302
|
-
proto.payment.
|
|
43303
|
-
return jspb.Message.getField(this,
|
|
45620
|
+
proto.payment.AdjustmentItem.prototype.hasCompletedAt = function() {
|
|
45621
|
+
return jspb.Message.getField(this, 13) != null;
|
|
43304
45622
|
};
|
|
43305
45623
|
|
|
43306
45624
|
|
|
43307
45625
|
/**
|
|
43308
|
-
* optional string player_nickname =
|
|
45626
|
+
* optional string player_nickname = 14;
|
|
43309
45627
|
* @return {string}
|
|
43310
45628
|
*/
|
|
43311
|
-
proto.payment.
|
|
43312
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
45629
|
+
proto.payment.AdjustmentItem.prototype.getPlayerNickname = function() {
|
|
45630
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
|
43313
45631
|
};
|
|
43314
45632
|
|
|
43315
45633
|
|
|
43316
45634
|
/**
|
|
43317
45635
|
* @param {string} value
|
|
43318
|
-
* @return {!proto.payment.
|
|
45636
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43319
45637
|
*/
|
|
43320
|
-
proto.payment.
|
|
43321
|
-
return jspb.Message.setField(this,
|
|
45638
|
+
proto.payment.AdjustmentItem.prototype.setPlayerNickname = function(value) {
|
|
45639
|
+
return jspb.Message.setField(this, 14, value);
|
|
43322
45640
|
};
|
|
43323
45641
|
|
|
43324
45642
|
|
|
43325
45643
|
/**
|
|
43326
45644
|
* Clears the field making it undefined.
|
|
43327
|
-
* @return {!proto.payment.
|
|
45645
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43328
45646
|
*/
|
|
43329
|
-
proto.payment.
|
|
43330
|
-
return jspb.Message.setField(this,
|
|
45647
|
+
proto.payment.AdjustmentItem.prototype.clearPlayerNickname = function() {
|
|
45648
|
+
return jspb.Message.setField(this, 14, undefined);
|
|
43331
45649
|
};
|
|
43332
45650
|
|
|
43333
45651
|
|
|
@@ -43335,35 +45653,35 @@ proto.payment.CompensationItem.prototype.clearPlayerNickname = function() {
|
|
|
43335
45653
|
* Returns whether this field is set.
|
|
43336
45654
|
* @return {boolean}
|
|
43337
45655
|
*/
|
|
43338
|
-
proto.payment.
|
|
43339
|
-
return jspb.Message.getField(this,
|
|
45656
|
+
proto.payment.AdjustmentItem.prototype.hasPlayerNickname = function() {
|
|
45657
|
+
return jspb.Message.getField(this, 14) != null;
|
|
43340
45658
|
};
|
|
43341
45659
|
|
|
43342
45660
|
|
|
43343
45661
|
/**
|
|
43344
|
-
* optional string player_email =
|
|
45662
|
+
* optional string player_email = 15;
|
|
43345
45663
|
* @return {string}
|
|
43346
45664
|
*/
|
|
43347
|
-
proto.payment.
|
|
43348
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
45665
|
+
proto.payment.AdjustmentItem.prototype.getPlayerEmail = function() {
|
|
45666
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
|
43349
45667
|
};
|
|
43350
45668
|
|
|
43351
45669
|
|
|
43352
45670
|
/**
|
|
43353
45671
|
* @param {string} value
|
|
43354
|
-
* @return {!proto.payment.
|
|
45672
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43355
45673
|
*/
|
|
43356
|
-
proto.payment.
|
|
43357
|
-
return jspb.Message.setField(this,
|
|
45674
|
+
proto.payment.AdjustmentItem.prototype.setPlayerEmail = function(value) {
|
|
45675
|
+
return jspb.Message.setField(this, 15, value);
|
|
43358
45676
|
};
|
|
43359
45677
|
|
|
43360
45678
|
|
|
43361
45679
|
/**
|
|
43362
45680
|
* Clears the field making it undefined.
|
|
43363
|
-
* @return {!proto.payment.
|
|
45681
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43364
45682
|
*/
|
|
43365
|
-
proto.payment.
|
|
43366
|
-
return jspb.Message.setField(this,
|
|
45683
|
+
proto.payment.AdjustmentItem.prototype.clearPlayerEmail = function() {
|
|
45684
|
+
return jspb.Message.setField(this, 15, undefined);
|
|
43367
45685
|
};
|
|
43368
45686
|
|
|
43369
45687
|
|
|
@@ -43371,35 +45689,35 @@ proto.payment.CompensationItem.prototype.clearPlayerEmail = function() {
|
|
|
43371
45689
|
* Returns whether this field is set.
|
|
43372
45690
|
* @return {boolean}
|
|
43373
45691
|
*/
|
|
43374
|
-
proto.payment.
|
|
43375
|
-
return jspb.Message.getField(this,
|
|
45692
|
+
proto.payment.AdjustmentItem.prototype.hasPlayerEmail = function() {
|
|
45693
|
+
return jspb.Message.getField(this, 15) != null;
|
|
43376
45694
|
};
|
|
43377
45695
|
|
|
43378
45696
|
|
|
43379
45697
|
/**
|
|
43380
|
-
* optional string operator_name =
|
|
45698
|
+
* optional string operator_name = 16;
|
|
43381
45699
|
* @return {string}
|
|
43382
45700
|
*/
|
|
43383
|
-
proto.payment.
|
|
43384
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
45701
|
+
proto.payment.AdjustmentItem.prototype.getOperatorName = function() {
|
|
45702
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
|
|
43385
45703
|
};
|
|
43386
45704
|
|
|
43387
45705
|
|
|
43388
45706
|
/**
|
|
43389
45707
|
* @param {string} value
|
|
43390
|
-
* @return {!proto.payment.
|
|
45708
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43391
45709
|
*/
|
|
43392
|
-
proto.payment.
|
|
43393
|
-
return jspb.Message.setField(this,
|
|
45710
|
+
proto.payment.AdjustmentItem.prototype.setOperatorName = function(value) {
|
|
45711
|
+
return jspb.Message.setField(this, 16, value);
|
|
43394
45712
|
};
|
|
43395
45713
|
|
|
43396
45714
|
|
|
43397
45715
|
/**
|
|
43398
45716
|
* Clears the field making it undefined.
|
|
43399
|
-
* @return {!proto.payment.
|
|
45717
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43400
45718
|
*/
|
|
43401
|
-
proto.payment.
|
|
43402
|
-
return jspb.Message.setField(this,
|
|
45719
|
+
proto.payment.AdjustmentItem.prototype.clearOperatorName = function() {
|
|
45720
|
+
return jspb.Message.setField(this, 16, undefined);
|
|
43403
45721
|
};
|
|
43404
45722
|
|
|
43405
45723
|
|
|
@@ -43407,35 +45725,35 @@ proto.payment.CompensationItem.prototype.clearOperatorName = function() {
|
|
|
43407
45725
|
* Returns whether this field is set.
|
|
43408
45726
|
* @return {boolean}
|
|
43409
45727
|
*/
|
|
43410
|
-
proto.payment.
|
|
43411
|
-
return jspb.Message.getField(this,
|
|
45728
|
+
proto.payment.AdjustmentItem.prototype.hasOperatorName = function() {
|
|
45729
|
+
return jspb.Message.getField(this, 16) != null;
|
|
43412
45730
|
};
|
|
43413
45731
|
|
|
43414
45732
|
|
|
43415
45733
|
/**
|
|
43416
|
-
* optional string operator_email =
|
|
45734
|
+
* optional string operator_email = 17;
|
|
43417
45735
|
* @return {string}
|
|
43418
45736
|
*/
|
|
43419
|
-
proto.payment.
|
|
43420
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
45737
|
+
proto.payment.AdjustmentItem.prototype.getOperatorEmail = function() {
|
|
45738
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
|
|
43421
45739
|
};
|
|
43422
45740
|
|
|
43423
45741
|
|
|
43424
45742
|
/**
|
|
43425
45743
|
* @param {string} value
|
|
43426
|
-
* @return {!proto.payment.
|
|
45744
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43427
45745
|
*/
|
|
43428
|
-
proto.payment.
|
|
43429
|
-
return jspb.Message.setField(this,
|
|
45746
|
+
proto.payment.AdjustmentItem.prototype.setOperatorEmail = function(value) {
|
|
45747
|
+
return jspb.Message.setField(this, 17, value);
|
|
43430
45748
|
};
|
|
43431
45749
|
|
|
43432
45750
|
|
|
43433
45751
|
/**
|
|
43434
45752
|
* Clears the field making it undefined.
|
|
43435
|
-
* @return {!proto.payment.
|
|
45753
|
+
* @return {!proto.payment.AdjustmentItem} returns this
|
|
43436
45754
|
*/
|
|
43437
|
-
proto.payment.
|
|
43438
|
-
return jspb.Message.setField(this,
|
|
45755
|
+
proto.payment.AdjustmentItem.prototype.clearOperatorEmail = function() {
|
|
45756
|
+
return jspb.Message.setField(this, 17, undefined);
|
|
43439
45757
|
};
|
|
43440
45758
|
|
|
43441
45759
|
|
|
@@ -43443,8 +45761,8 @@ proto.payment.CompensationItem.prototype.clearOperatorEmail = function() {
|
|
|
43443
45761
|
* Returns whether this field is set.
|
|
43444
45762
|
* @return {boolean}
|
|
43445
45763
|
*/
|
|
43446
|
-
proto.payment.
|
|
43447
|
-
return jspb.Message.getField(this,
|
|
45764
|
+
proto.payment.AdjustmentItem.prototype.hasOperatorEmail = function() {
|
|
45765
|
+
return jspb.Message.getField(this, 17) != null;
|
|
43448
45766
|
};
|
|
43449
45767
|
|
|
43450
45768
|
|
|
@@ -43454,7 +45772,7 @@ proto.payment.CompensationItem.prototype.hasOperatorEmail = function() {
|
|
|
43454
45772
|
* @private {!Array<number>}
|
|
43455
45773
|
* @const
|
|
43456
45774
|
*/
|
|
43457
|
-
proto.payment.
|
|
45775
|
+
proto.payment.AdjustmentItemsResponse.repeatedFields_ = [1];
|
|
43458
45776
|
|
|
43459
45777
|
|
|
43460
45778
|
|
|
@@ -43471,8 +45789,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
43471
45789
|
* http://goto/soy-param-migration
|
|
43472
45790
|
* @return {!Object}
|
|
43473
45791
|
*/
|
|
43474
|
-
proto.payment.
|
|
43475
|
-
return proto.payment.
|
|
45792
|
+
proto.payment.AdjustmentItemsResponse.prototype.toObject = function(opt_includeInstance) {
|
|
45793
|
+
return proto.payment.AdjustmentItemsResponse.toObject(opt_includeInstance, this);
|
|
43476
45794
|
};
|
|
43477
45795
|
|
|
43478
45796
|
|
|
@@ -43481,14 +45799,14 @@ proto.payment.CompensationItemsResponse.prototype.toObject = function(opt_includ
|
|
|
43481
45799
|
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
43482
45800
|
* the JSPB instance for transitional soy proto support:
|
|
43483
45801
|
* http://goto/soy-param-migration
|
|
43484
|
-
* @param {!proto.payment.
|
|
45802
|
+
* @param {!proto.payment.AdjustmentItemsResponse} msg The msg instance to transform.
|
|
43485
45803
|
* @return {!Object}
|
|
43486
45804
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
43487
45805
|
*/
|
|
43488
|
-
proto.payment.
|
|
45806
|
+
proto.payment.AdjustmentItemsResponse.toObject = function(includeInstance, msg) {
|
|
43489
45807
|
var f, obj = {
|
|
43490
45808
|
itemsList: jspb.Message.toObjectList(msg.getItemsList(),
|
|
43491
|
-
proto.payment.
|
|
45809
|
+
proto.payment.AdjustmentItem.toObject, includeInstance),
|
|
43492
45810
|
totalPages: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
43493
45811
|
totalItems: jspb.Message.getFieldWithDefault(msg, 3, 0)
|
|
43494
45812
|
};
|
|
@@ -43504,23 +45822,23 @@ proto.payment.CompensationItemsResponse.toObject = function(includeInstance, msg
|
|
|
43504
45822
|
/**
|
|
43505
45823
|
* Deserializes binary data (in protobuf wire format).
|
|
43506
45824
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
43507
|
-
* @return {!proto.payment.
|
|
45825
|
+
* @return {!proto.payment.AdjustmentItemsResponse}
|
|
43508
45826
|
*/
|
|
43509
|
-
proto.payment.
|
|
45827
|
+
proto.payment.AdjustmentItemsResponse.deserializeBinary = function(bytes) {
|
|
43510
45828
|
var reader = new jspb.BinaryReader(bytes);
|
|
43511
|
-
var msg = new proto.payment.
|
|
43512
|
-
return proto.payment.
|
|
45829
|
+
var msg = new proto.payment.AdjustmentItemsResponse;
|
|
45830
|
+
return proto.payment.AdjustmentItemsResponse.deserializeBinaryFromReader(msg, reader);
|
|
43513
45831
|
};
|
|
43514
45832
|
|
|
43515
45833
|
|
|
43516
45834
|
/**
|
|
43517
45835
|
* Deserializes binary data (in protobuf wire format) from the
|
|
43518
45836
|
* given reader into the given message object.
|
|
43519
|
-
* @param {!proto.payment.
|
|
45837
|
+
* @param {!proto.payment.AdjustmentItemsResponse} msg The message object to deserialize into.
|
|
43520
45838
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
43521
|
-
* @return {!proto.payment.
|
|
45839
|
+
* @return {!proto.payment.AdjustmentItemsResponse}
|
|
43522
45840
|
*/
|
|
43523
|
-
proto.payment.
|
|
45841
|
+
proto.payment.AdjustmentItemsResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
43524
45842
|
while (reader.nextField()) {
|
|
43525
45843
|
if (reader.isEndGroup()) {
|
|
43526
45844
|
break;
|
|
@@ -43528,8 +45846,8 @@ proto.payment.CompensationItemsResponse.deserializeBinaryFromReader = function(m
|
|
|
43528
45846
|
var field = reader.getFieldNumber();
|
|
43529
45847
|
switch (field) {
|
|
43530
45848
|
case 1:
|
|
43531
|
-
var value = new proto.payment.
|
|
43532
|
-
reader.readMessage(value,proto.payment.
|
|
45849
|
+
var value = new proto.payment.AdjustmentItem;
|
|
45850
|
+
reader.readMessage(value,proto.payment.AdjustmentItem.deserializeBinaryFromReader);
|
|
43533
45851
|
msg.addItems(value);
|
|
43534
45852
|
break;
|
|
43535
45853
|
case 2:
|
|
@@ -43553,9 +45871,9 @@ proto.payment.CompensationItemsResponse.deserializeBinaryFromReader = function(m
|
|
|
43553
45871
|
* Serializes the message to binary data (in protobuf wire format).
|
|
43554
45872
|
* @return {!Uint8Array}
|
|
43555
45873
|
*/
|
|
43556
|
-
proto.payment.
|
|
45874
|
+
proto.payment.AdjustmentItemsResponse.prototype.serializeBinary = function() {
|
|
43557
45875
|
var writer = new jspb.BinaryWriter();
|
|
43558
|
-
proto.payment.
|
|
45876
|
+
proto.payment.AdjustmentItemsResponse.serializeBinaryToWriter(this, writer);
|
|
43559
45877
|
return writer.getResultBuffer();
|
|
43560
45878
|
};
|
|
43561
45879
|
|
|
@@ -43563,18 +45881,18 @@ proto.payment.CompensationItemsResponse.prototype.serializeBinary = function() {
|
|
|
43563
45881
|
/**
|
|
43564
45882
|
* Serializes the given message to binary data (in protobuf wire
|
|
43565
45883
|
* format), writing to the given BinaryWriter.
|
|
43566
|
-
* @param {!proto.payment.
|
|
45884
|
+
* @param {!proto.payment.AdjustmentItemsResponse} message
|
|
43567
45885
|
* @param {!jspb.BinaryWriter} writer
|
|
43568
45886
|
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
43569
45887
|
*/
|
|
43570
|
-
proto.payment.
|
|
45888
|
+
proto.payment.AdjustmentItemsResponse.serializeBinaryToWriter = function(message, writer) {
|
|
43571
45889
|
var f = undefined;
|
|
43572
45890
|
f = message.getItemsList();
|
|
43573
45891
|
if (f.length > 0) {
|
|
43574
45892
|
writer.writeRepeatedMessage(
|
|
43575
45893
|
1,
|
|
43576
45894
|
f,
|
|
43577
|
-
proto.payment.
|
|
45895
|
+
proto.payment.AdjustmentItem.serializeBinaryToWriter
|
|
43578
45896
|
);
|
|
43579
45897
|
}
|
|
43580
45898
|
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
|
@@ -43595,39 +45913,39 @@ proto.payment.CompensationItemsResponse.serializeBinaryToWriter = function(messa
|
|
|
43595
45913
|
|
|
43596
45914
|
|
|
43597
45915
|
/**
|
|
43598
|
-
* repeated
|
|
43599
|
-
* @return {!Array<!proto.payment.
|
|
45916
|
+
* repeated AdjustmentItem items = 1;
|
|
45917
|
+
* @return {!Array<!proto.payment.AdjustmentItem>}
|
|
43600
45918
|
*/
|
|
43601
|
-
proto.payment.
|
|
43602
|
-
return /** @type{!Array<!proto.payment.
|
|
43603
|
-
jspb.Message.getRepeatedWrapperField(this, proto.payment.
|
|
45919
|
+
proto.payment.AdjustmentItemsResponse.prototype.getItemsList = function() {
|
|
45920
|
+
return /** @type{!Array<!proto.payment.AdjustmentItem>} */ (
|
|
45921
|
+
jspb.Message.getRepeatedWrapperField(this, proto.payment.AdjustmentItem, 1));
|
|
43604
45922
|
};
|
|
43605
45923
|
|
|
43606
45924
|
|
|
43607
45925
|
/**
|
|
43608
|
-
* @param {!Array<!proto.payment.
|
|
43609
|
-
* @return {!proto.payment.
|
|
45926
|
+
* @param {!Array<!proto.payment.AdjustmentItem>} value
|
|
45927
|
+
* @return {!proto.payment.AdjustmentItemsResponse} returns this
|
|
43610
45928
|
*/
|
|
43611
|
-
proto.payment.
|
|
45929
|
+
proto.payment.AdjustmentItemsResponse.prototype.setItemsList = function(value) {
|
|
43612
45930
|
return jspb.Message.setRepeatedWrapperField(this, 1, value);
|
|
43613
45931
|
};
|
|
43614
45932
|
|
|
43615
45933
|
|
|
43616
45934
|
/**
|
|
43617
|
-
* @param {!proto.payment.
|
|
45935
|
+
* @param {!proto.payment.AdjustmentItem=} opt_value
|
|
43618
45936
|
* @param {number=} opt_index
|
|
43619
|
-
* @return {!proto.payment.
|
|
45937
|
+
* @return {!proto.payment.AdjustmentItem}
|
|
43620
45938
|
*/
|
|
43621
|
-
proto.payment.
|
|
43622
|
-
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.payment.
|
|
45939
|
+
proto.payment.AdjustmentItemsResponse.prototype.addItems = function(opt_value, opt_index) {
|
|
45940
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.payment.AdjustmentItem, opt_index);
|
|
43623
45941
|
};
|
|
43624
45942
|
|
|
43625
45943
|
|
|
43626
45944
|
/**
|
|
43627
45945
|
* Clears the list making it empty but non-null.
|
|
43628
|
-
* @return {!proto.payment.
|
|
45946
|
+
* @return {!proto.payment.AdjustmentItemsResponse} returns this
|
|
43629
45947
|
*/
|
|
43630
|
-
proto.payment.
|
|
45948
|
+
proto.payment.AdjustmentItemsResponse.prototype.clearItemsList = function() {
|
|
43631
45949
|
return this.setItemsList([]);
|
|
43632
45950
|
};
|
|
43633
45951
|
|
|
@@ -43636,25 +45954,25 @@ proto.payment.CompensationItemsResponse.prototype.clearItemsList = function() {
|
|
|
43636
45954
|
* optional int32 total_pages = 2;
|
|
43637
45955
|
* @return {number}
|
|
43638
45956
|
*/
|
|
43639
|
-
proto.payment.
|
|
45957
|
+
proto.payment.AdjustmentItemsResponse.prototype.getTotalPages = function() {
|
|
43640
45958
|
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
43641
45959
|
};
|
|
43642
45960
|
|
|
43643
45961
|
|
|
43644
45962
|
/**
|
|
43645
45963
|
* @param {number} value
|
|
43646
|
-
* @return {!proto.payment.
|
|
45964
|
+
* @return {!proto.payment.AdjustmentItemsResponse} returns this
|
|
43647
45965
|
*/
|
|
43648
|
-
proto.payment.
|
|
45966
|
+
proto.payment.AdjustmentItemsResponse.prototype.setTotalPages = function(value) {
|
|
43649
45967
|
return jspb.Message.setField(this, 2, value);
|
|
43650
45968
|
};
|
|
43651
45969
|
|
|
43652
45970
|
|
|
43653
45971
|
/**
|
|
43654
45972
|
* Clears the field making it undefined.
|
|
43655
|
-
* @return {!proto.payment.
|
|
45973
|
+
* @return {!proto.payment.AdjustmentItemsResponse} returns this
|
|
43656
45974
|
*/
|
|
43657
|
-
proto.payment.
|
|
45975
|
+
proto.payment.AdjustmentItemsResponse.prototype.clearTotalPages = function() {
|
|
43658
45976
|
return jspb.Message.setField(this, 2, undefined);
|
|
43659
45977
|
};
|
|
43660
45978
|
|
|
@@ -43663,7 +45981,7 @@ proto.payment.CompensationItemsResponse.prototype.clearTotalPages = function() {
|
|
|
43663
45981
|
* Returns whether this field is set.
|
|
43664
45982
|
* @return {boolean}
|
|
43665
45983
|
*/
|
|
43666
|
-
proto.payment.
|
|
45984
|
+
proto.payment.AdjustmentItemsResponse.prototype.hasTotalPages = function() {
|
|
43667
45985
|
return jspb.Message.getField(this, 2) != null;
|
|
43668
45986
|
};
|
|
43669
45987
|
|
|
@@ -43672,25 +45990,25 @@ proto.payment.CompensationItemsResponse.prototype.hasTotalPages = function() {
|
|
|
43672
45990
|
* optional int32 total_items = 3;
|
|
43673
45991
|
* @return {number}
|
|
43674
45992
|
*/
|
|
43675
|
-
proto.payment.
|
|
45993
|
+
proto.payment.AdjustmentItemsResponse.prototype.getTotalItems = function() {
|
|
43676
45994
|
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
43677
45995
|
};
|
|
43678
45996
|
|
|
43679
45997
|
|
|
43680
45998
|
/**
|
|
43681
45999
|
* @param {number} value
|
|
43682
|
-
* @return {!proto.payment.
|
|
46000
|
+
* @return {!proto.payment.AdjustmentItemsResponse} returns this
|
|
43683
46001
|
*/
|
|
43684
|
-
proto.payment.
|
|
46002
|
+
proto.payment.AdjustmentItemsResponse.prototype.setTotalItems = function(value) {
|
|
43685
46003
|
return jspb.Message.setField(this, 3, value);
|
|
43686
46004
|
};
|
|
43687
46005
|
|
|
43688
46006
|
|
|
43689
46007
|
/**
|
|
43690
46008
|
* Clears the field making it undefined.
|
|
43691
|
-
* @return {!proto.payment.
|
|
46009
|
+
* @return {!proto.payment.AdjustmentItemsResponse} returns this
|
|
43692
46010
|
*/
|
|
43693
|
-
proto.payment.
|
|
46011
|
+
proto.payment.AdjustmentItemsResponse.prototype.clearTotalItems = function() {
|
|
43694
46012
|
return jspb.Message.setField(this, 3, undefined);
|
|
43695
46013
|
};
|
|
43696
46014
|
|
|
@@ -43699,7 +46017,7 @@ proto.payment.CompensationItemsResponse.prototype.clearTotalItems = function() {
|
|
|
43699
46017
|
* Returns whether this field is set.
|
|
43700
46018
|
* @return {boolean}
|
|
43701
46019
|
*/
|
|
43702
|
-
proto.payment.
|
|
46020
|
+
proto.payment.AdjustmentItemsResponse.prototype.hasTotalItems = function() {
|
|
43703
46021
|
return jspb.Message.getField(this, 3) != null;
|
|
43704
46022
|
};
|
|
43705
46023
|
|