@sniipwebmaster/transaction-service-client-grpcweb-ts 25.7.12794 → 25.7.12814
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/dependancies/service_pb.d.ts +21 -0
- package/dependancies/service_pb.js +157 -6
- package/package.json +1 -1
|
@@ -2214,6 +2214,9 @@ export class PayBillRequest extends jspb.Message {
|
|
|
2214
2214
|
getVerificationcode(): string;
|
|
2215
2215
|
setVerificationcode(value: string): PayBillRequest;
|
|
2216
2216
|
|
|
2217
|
+
getLoyaltyoptionid(): number;
|
|
2218
|
+
setLoyaltyoptionid(value: number): PayBillRequest;
|
|
2219
|
+
|
|
2217
2220
|
serializeBinary(): Uint8Array;
|
|
2218
2221
|
toObject(includeInstance?: boolean): PayBillRequest.AsObject;
|
|
2219
2222
|
static toObject(includeInstance: boolean, msg: PayBillRequest): PayBillRequest.AsObject;
|
|
@@ -2249,6 +2252,7 @@ export namespace PayBillRequest {
|
|
|
2249
2252
|
reservedrewarditemid: number,
|
|
2250
2253
|
originalbanktransactionid: number,
|
|
2251
2254
|
verificationcode: string,
|
|
2255
|
+
loyaltyoptionid: number,
|
|
2252
2256
|
}
|
|
2253
2257
|
}
|
|
2254
2258
|
|
|
@@ -2452,6 +2456,9 @@ export class PaymentDetailsBulkRequest extends jspb.Message {
|
|
|
2452
2456
|
clearBulkitemList(): PaymentDetailsBulkRequest;
|
|
2453
2457
|
addBulkitem(value?: BulkItem, index?: number): BulkItem;
|
|
2454
2458
|
|
|
2459
|
+
getLoyaltyoptionid(): number;
|
|
2460
|
+
setLoyaltyoptionid(value: number): PaymentDetailsBulkRequest;
|
|
2461
|
+
|
|
2455
2462
|
serializeBinary(): Uint8Array;
|
|
2456
2463
|
toObject(includeInstance?: boolean): PaymentDetailsBulkRequest.AsObject;
|
|
2457
2464
|
static toObject(includeInstance: boolean, msg: PaymentDetailsBulkRequest): PaymentDetailsBulkRequest.AsObject;
|
|
@@ -2473,6 +2480,7 @@ export namespace PaymentDetailsBulkRequest {
|
|
|
2473
2480
|
rewardamount: number,
|
|
2474
2481
|
isgooglepaysurchargerequest: boolean,
|
|
2475
2482
|
bulkitemList: Array<BulkItem.AsObject>,
|
|
2483
|
+
loyaltyoptionid: number,
|
|
2476
2484
|
}
|
|
2477
2485
|
|
|
2478
2486
|
export enum PaymentDetailsBulkRequestPaymentMethod {
|
|
@@ -2553,6 +2561,9 @@ export class PaymentDetailsBulkResponse extends jspb.Message {
|
|
|
2553
2561
|
getLoyaltyprogramcode(): string;
|
|
2554
2562
|
setLoyaltyprogramcode(value: string): PaymentDetailsBulkResponse;
|
|
2555
2563
|
|
|
2564
|
+
getLoyaltyoptionid(): number;
|
|
2565
|
+
setLoyaltyoptionid(value: number): PaymentDetailsBulkResponse;
|
|
2566
|
+
|
|
2556
2567
|
serializeBinary(): Uint8Array;
|
|
2557
2568
|
toObject(includeInstance?: boolean): PaymentDetailsBulkResponse.AsObject;
|
|
2558
2569
|
static toObject(includeInstance: boolean, msg: PaymentDetailsBulkResponse): PaymentDetailsBulkResponse.AsObject;
|
|
@@ -2583,6 +2594,7 @@ export namespace PaymentDetailsBulkResponse {
|
|
|
2583
2594
|
feediscountmessage: string,
|
|
2584
2595
|
businessratesdisclaimermessage: string,
|
|
2585
2596
|
loyaltyprogramcode: string,
|
|
2597
|
+
loyaltyoptionid: number,
|
|
2586
2598
|
}
|
|
2587
2599
|
}
|
|
2588
2600
|
|
|
@@ -2629,6 +2641,9 @@ export class PaymentDetailsRequest extends jspb.Message {
|
|
|
2629
2641
|
getReservedrewarditemid(): number;
|
|
2630
2642
|
setReservedrewarditemid(value: number): PaymentDetailsRequest;
|
|
2631
2643
|
|
|
2644
|
+
getLoyaltyoptionid(): number;
|
|
2645
|
+
setLoyaltyoptionid(value: number): PaymentDetailsRequest;
|
|
2646
|
+
|
|
2632
2647
|
serializeBinary(): Uint8Array;
|
|
2633
2648
|
toObject(includeInstance?: boolean): PaymentDetailsRequest.AsObject;
|
|
2634
2649
|
static toObject(includeInstance: boolean, msg: PaymentDetailsRequest): PaymentDetailsRequest.AsObject;
|
|
@@ -2653,6 +2668,7 @@ export namespace PaymentDetailsRequest {
|
|
|
2653
2668
|
rewardamount: number,
|
|
2654
2669
|
isgooglepaysurchargerequest: boolean,
|
|
2655
2670
|
reservedrewarditemid: number,
|
|
2671
|
+
loyaltyoptionid: number,
|
|
2656
2672
|
}
|
|
2657
2673
|
|
|
2658
2674
|
export enum PaymentDetailsRequestPaymentMethod {
|
|
@@ -2665,6 +2681,7 @@ export namespace PaymentDetailsRequest {
|
|
|
2665
2681
|
PAYMENT_DETAILS_REQUEST_PAYMENT_METHOD_WEX_CARD = 6,
|
|
2666
2682
|
PAYMENT_DETAILS_REQUEST_PAYMENT_METHOD_ALIPAY = 7,
|
|
2667
2683
|
PAYMENT_DETAILS_REQUEST_PAYMENT_METHOD_WE_CHAT_PAY = 8,
|
|
2684
|
+
PAYMENT_DETAILS_REQUEST_PAYMENT_METHOD_UNKNOWN = 9,
|
|
2668
2685
|
}
|
|
2669
2686
|
}
|
|
2670
2687
|
|
|
@@ -2756,6 +2773,9 @@ export class PaymentDetailsResponse extends jspb.Message {
|
|
|
2756
2773
|
getLoyaltyprogramcode(): string;
|
|
2757
2774
|
setLoyaltyprogramcode(value: string): PaymentDetailsResponse;
|
|
2758
2775
|
|
|
2776
|
+
getLoyaltyoptionid(): number;
|
|
2777
|
+
setLoyaltyoptionid(value: number): PaymentDetailsResponse;
|
|
2778
|
+
|
|
2759
2779
|
serializeBinary(): Uint8Array;
|
|
2760
2780
|
toObject(includeInstance?: boolean): PaymentDetailsResponse.AsObject;
|
|
2761
2781
|
static toObject(includeInstance: boolean, msg: PaymentDetailsResponse): PaymentDetailsResponse.AsObject;
|
|
@@ -2793,6 +2813,7 @@ export namespace PaymentDetailsResponse {
|
|
|
2793
2813
|
applepaydetails?: ApplePayDetails.AsObject,
|
|
2794
2814
|
googlepaydetails?: GooglePayDetails.AsObject,
|
|
2795
2815
|
loyaltyprogramcode: string,
|
|
2816
|
+
loyaltyoptionid: number,
|
|
2796
2817
|
}
|
|
2797
2818
|
|
|
2798
2819
|
export enum ApplepaydetailsCase {
|
|
@@ -19055,7 +19055,8 @@ proto.sniiptransactionapi.PayBillRequest.toObject = function(includeInstance, ms
|
|
|
19055
19055
|
rewardamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 22, 0.0),
|
|
19056
19056
|
reservedrewarditemid: jspb.Message.getFieldWithDefault(msg, 23, 0),
|
|
19057
19057
|
originalbanktransactionid: jspb.Message.getFieldWithDefault(msg, 24, 0),
|
|
19058
|
-
verificationcode: jspb.Message.getFieldWithDefault(msg, 25, "")
|
|
19058
|
+
verificationcode: jspb.Message.getFieldWithDefault(msg, 25, ""),
|
|
19059
|
+
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 26, 0)
|
|
19059
19060
|
};
|
|
19060
19061
|
|
|
19061
19062
|
if (includeInstance) {
|
|
@@ -19192,6 +19193,10 @@ proto.sniiptransactionapi.PayBillRequest.deserializeBinaryFromReader = function(
|
|
|
19192
19193
|
var value = /** @type {string} */ (reader.readString());
|
|
19193
19194
|
msg.setVerificationcode(value);
|
|
19194
19195
|
break;
|
|
19196
|
+
case 26:
|
|
19197
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
19198
|
+
msg.setLoyaltyoptionid(value);
|
|
19199
|
+
break;
|
|
19195
19200
|
default:
|
|
19196
19201
|
reader.skipField();
|
|
19197
19202
|
break;
|
|
@@ -19396,6 +19401,13 @@ proto.sniiptransactionapi.PayBillRequest.serializeBinaryToWriter = function(mess
|
|
|
19396
19401
|
f
|
|
19397
19402
|
);
|
|
19398
19403
|
}
|
|
19404
|
+
f = message.getLoyaltyoptionid();
|
|
19405
|
+
if (f !== 0) {
|
|
19406
|
+
writer.writeInt64(
|
|
19407
|
+
26,
|
|
19408
|
+
f
|
|
19409
|
+
);
|
|
19410
|
+
}
|
|
19399
19411
|
};
|
|
19400
19412
|
|
|
19401
19413
|
|
|
@@ -19849,6 +19861,24 @@ proto.sniiptransactionapi.PayBillRequest.prototype.setVerificationcode = functio
|
|
|
19849
19861
|
};
|
|
19850
19862
|
|
|
19851
19863
|
|
|
19864
|
+
/**
|
|
19865
|
+
* optional int64 loyaltyOptionId = 26;
|
|
19866
|
+
* @return {number}
|
|
19867
|
+
*/
|
|
19868
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.getLoyaltyoptionid = function() {
|
|
19869
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 26, 0));
|
|
19870
|
+
};
|
|
19871
|
+
|
|
19872
|
+
|
|
19873
|
+
/**
|
|
19874
|
+
* @param {number} value
|
|
19875
|
+
* @return {!proto.sniiptransactionapi.PayBillRequest} returns this
|
|
19876
|
+
*/
|
|
19877
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.setLoyaltyoptionid = function(value) {
|
|
19878
|
+
return jspb.Message.setProto3IntField(this, 26, value);
|
|
19879
|
+
};
|
|
19880
|
+
|
|
19881
|
+
|
|
19852
19882
|
|
|
19853
19883
|
|
|
19854
19884
|
|
|
@@ -21138,7 +21168,8 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.toObject = function(includeI
|
|
|
21138
21168
|
rewardamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 10, 0.0),
|
|
21139
21169
|
isgooglepaysurchargerequest: jspb.Message.getBooleanFieldWithDefault(msg, 11, false),
|
|
21140
21170
|
bulkitemList: jspb.Message.toObjectList(msg.getBulkitemList(),
|
|
21141
|
-
proto.sniiptransactionapi.BulkItem.toObject, includeInstance)
|
|
21171
|
+
proto.sniiptransactionapi.BulkItem.toObject, includeInstance),
|
|
21172
|
+
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 13, 0)
|
|
21142
21173
|
};
|
|
21143
21174
|
|
|
21144
21175
|
if (includeInstance) {
|
|
@@ -21220,6 +21251,10 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.deserializeBinaryFromReader
|
|
|
21220
21251
|
reader.readMessage(value,proto.sniiptransactionapi.BulkItem.deserializeBinaryFromReader);
|
|
21221
21252
|
msg.addBulkitem(value);
|
|
21222
21253
|
break;
|
|
21254
|
+
case 13:
|
|
21255
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
21256
|
+
msg.setLoyaltyoptionid(value);
|
|
21257
|
+
break;
|
|
21223
21258
|
default:
|
|
21224
21259
|
reader.skipField();
|
|
21225
21260
|
break;
|
|
@@ -21327,6 +21362,13 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.serializeBinaryToWriter = fu
|
|
|
21327
21362
|
proto.sniiptransactionapi.BulkItem.serializeBinaryToWriter
|
|
21328
21363
|
);
|
|
21329
21364
|
}
|
|
21365
|
+
f = message.getLoyaltyoptionid();
|
|
21366
|
+
if (f !== 0) {
|
|
21367
|
+
writer.writeInt64(
|
|
21368
|
+
13,
|
|
21369
|
+
f
|
|
21370
|
+
);
|
|
21371
|
+
}
|
|
21330
21372
|
};
|
|
21331
21373
|
|
|
21332
21374
|
|
|
@@ -21561,6 +21603,24 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.prototype.clearBulkitemList
|
|
|
21561
21603
|
};
|
|
21562
21604
|
|
|
21563
21605
|
|
|
21606
|
+
/**
|
|
21607
|
+
* optional int64 loyaltyOptionId = 13;
|
|
21608
|
+
* @return {number}
|
|
21609
|
+
*/
|
|
21610
|
+
proto.sniiptransactionapi.PaymentDetailsBulkRequest.prototype.getLoyaltyoptionid = function() {
|
|
21611
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
|
|
21612
|
+
};
|
|
21613
|
+
|
|
21614
|
+
|
|
21615
|
+
/**
|
|
21616
|
+
* @param {number} value
|
|
21617
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsBulkRequest} returns this
|
|
21618
|
+
*/
|
|
21619
|
+
proto.sniiptransactionapi.PaymentDetailsBulkRequest.prototype.setLoyaltyoptionid = function(value) {
|
|
21620
|
+
return jspb.Message.setProto3IntField(this, 13, value);
|
|
21621
|
+
};
|
|
21622
|
+
|
|
21623
|
+
|
|
21564
21624
|
|
|
21565
21625
|
/**
|
|
21566
21626
|
* List of repeated fields within this message type.
|
|
@@ -21620,7 +21680,8 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.toObject = function(include
|
|
|
21620
21680
|
wasfeediscountapplied: jspb.Message.getBooleanFieldWithDefault(msg, 17, false),
|
|
21621
21681
|
feediscountmessage: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
21622
21682
|
businessratesdisclaimermessage: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
21623
|
-
loyaltyprogramcode: jspb.Message.getFieldWithDefault(msg, 20, "")
|
|
21683
|
+
loyaltyprogramcode: jspb.Message.getFieldWithDefault(msg, 20, ""),
|
|
21684
|
+
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 21, 0)
|
|
21624
21685
|
};
|
|
21625
21686
|
|
|
21626
21687
|
if (includeInstance) {
|
|
@@ -21741,6 +21802,10 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.deserializeBinaryFromReader
|
|
|
21741
21802
|
var value = /** @type {string} */ (reader.readString());
|
|
21742
21803
|
msg.setLoyaltyprogramcode(value);
|
|
21743
21804
|
break;
|
|
21805
|
+
case 21:
|
|
21806
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
21807
|
+
msg.setLoyaltyoptionid(value);
|
|
21808
|
+
break;
|
|
21744
21809
|
default:
|
|
21745
21810
|
reader.skipField();
|
|
21746
21811
|
break;
|
|
@@ -21912,6 +21977,13 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.serializeBinaryToWriter = f
|
|
|
21912
21977
|
f
|
|
21913
21978
|
);
|
|
21914
21979
|
}
|
|
21980
|
+
f = message.getLoyaltyoptionid();
|
|
21981
|
+
if (f !== 0) {
|
|
21982
|
+
writer.writeInt64(
|
|
21983
|
+
21,
|
|
21984
|
+
f
|
|
21985
|
+
);
|
|
21986
|
+
}
|
|
21915
21987
|
};
|
|
21916
21988
|
|
|
21917
21989
|
|
|
@@ -22333,6 +22405,24 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setLoyaltyprogram
|
|
|
22333
22405
|
};
|
|
22334
22406
|
|
|
22335
22407
|
|
|
22408
|
+
/**
|
|
22409
|
+
* optional int64 loyaltyOptionId = 21;
|
|
22410
|
+
* @return {number}
|
|
22411
|
+
*/
|
|
22412
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.getLoyaltyoptionid = function() {
|
|
22413
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 21, 0));
|
|
22414
|
+
};
|
|
22415
|
+
|
|
22416
|
+
|
|
22417
|
+
/**
|
|
22418
|
+
* @param {number} value
|
|
22419
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsBulkResponse} returns this
|
|
22420
|
+
*/
|
|
22421
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setLoyaltyoptionid = function(value) {
|
|
22422
|
+
return jspb.Message.setProto3IntField(this, 21, value);
|
|
22423
|
+
};
|
|
22424
|
+
|
|
22425
|
+
|
|
22336
22426
|
|
|
22337
22427
|
|
|
22338
22428
|
|
|
@@ -22378,7 +22468,8 @@ proto.sniiptransactionapi.PaymentDetailsRequest.toObject = function(includeInsta
|
|
|
22378
22468
|
cardvariant: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
22379
22469
|
rewardamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 12, 0.0),
|
|
22380
22470
|
isgooglepaysurchargerequest: jspb.Message.getBooleanFieldWithDefault(msg, 13, false),
|
|
22381
|
-
reservedrewarditemid: jspb.Message.getFieldWithDefault(msg, 14, 0)
|
|
22471
|
+
reservedrewarditemid: jspb.Message.getFieldWithDefault(msg, 14, 0),
|
|
22472
|
+
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 15, 0)
|
|
22382
22473
|
};
|
|
22383
22474
|
|
|
22384
22475
|
if (includeInstance) {
|
|
@@ -22471,6 +22562,10 @@ proto.sniiptransactionapi.PaymentDetailsRequest.deserializeBinaryFromReader = fu
|
|
|
22471
22562
|
var value = /** @type {number} */ (reader.readInt64());
|
|
22472
22563
|
msg.setReservedrewarditemid(value);
|
|
22473
22564
|
break;
|
|
22565
|
+
case 15:
|
|
22566
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
22567
|
+
msg.setLoyaltyoptionid(value);
|
|
22568
|
+
break;
|
|
22474
22569
|
default:
|
|
22475
22570
|
reader.skipField();
|
|
22476
22571
|
break;
|
|
@@ -22598,6 +22693,13 @@ proto.sniiptransactionapi.PaymentDetailsRequest.serializeBinaryToWriter = functi
|
|
|
22598
22693
|
f
|
|
22599
22694
|
);
|
|
22600
22695
|
}
|
|
22696
|
+
f = message.getLoyaltyoptionid();
|
|
22697
|
+
if (f !== 0) {
|
|
22698
|
+
writer.writeInt64(
|
|
22699
|
+
15,
|
|
22700
|
+
f
|
|
22701
|
+
);
|
|
22702
|
+
}
|
|
22601
22703
|
};
|
|
22602
22704
|
|
|
22603
22705
|
|
|
@@ -22613,7 +22715,8 @@ proto.sniiptransactionapi.PaymentDetailsRequest.PaymentDetailsRequestPaymentMeth
|
|
|
22613
22715
|
PAYMENT_DETAILS_REQUEST_PAYMENT_METHOD_DINERS: 5,
|
|
22614
22716
|
PAYMENT_DETAILS_REQUEST_PAYMENT_METHOD_WEX_CARD: 6,
|
|
22615
22717
|
PAYMENT_DETAILS_REQUEST_PAYMENT_METHOD_ALIPAY: 7,
|
|
22616
|
-
PAYMENT_DETAILS_REQUEST_PAYMENT_METHOD_WE_CHAT_PAY: 8
|
|
22718
|
+
PAYMENT_DETAILS_REQUEST_PAYMENT_METHOD_WE_CHAT_PAY: 8,
|
|
22719
|
+
PAYMENT_DETAILS_REQUEST_PAYMENT_METHOD_UNKNOWN: 9
|
|
22617
22720
|
};
|
|
22618
22721
|
|
|
22619
22722
|
/**
|
|
@@ -22868,6 +22971,24 @@ proto.sniiptransactionapi.PaymentDetailsRequest.prototype.setReservedrewarditemi
|
|
|
22868
22971
|
};
|
|
22869
22972
|
|
|
22870
22973
|
|
|
22974
|
+
/**
|
|
22975
|
+
* optional int64 loyaltyOptionId = 15;
|
|
22976
|
+
* @return {number}
|
|
22977
|
+
*/
|
|
22978
|
+
proto.sniiptransactionapi.PaymentDetailsRequest.prototype.getLoyaltyoptionid = function() {
|
|
22979
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 15, 0));
|
|
22980
|
+
};
|
|
22981
|
+
|
|
22982
|
+
|
|
22983
|
+
/**
|
|
22984
|
+
* @param {number} value
|
|
22985
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsRequest} returns this
|
|
22986
|
+
*/
|
|
22987
|
+
proto.sniiptransactionapi.PaymentDetailsRequest.prototype.setLoyaltyoptionid = function(value) {
|
|
22988
|
+
return jspb.Message.setProto3IntField(this, 15, value);
|
|
22989
|
+
};
|
|
22990
|
+
|
|
22991
|
+
|
|
22871
22992
|
|
|
22872
22993
|
|
|
22873
22994
|
|
|
@@ -22926,7 +23047,8 @@ proto.sniiptransactionapi.PaymentDetailsResponse.toObject = function(includeInst
|
|
|
22926
23047
|
businessratesdisclaimermessage: jspb.Message.getFieldWithDefault(msg, 24, ""),
|
|
22927
23048
|
applepaydetails: (f = msg.getApplepaydetails()) && proto.sniiptransactionapi.ApplePayDetails.toObject(includeInstance, f),
|
|
22928
23049
|
googlepaydetails: (f = msg.getGooglepaydetails()) && proto.sniiptransactionapi.GooglePayDetails.toObject(includeInstance, f),
|
|
22929
|
-
loyaltyprogramcode: jspb.Message.getFieldWithDefault(msg, 27, "")
|
|
23050
|
+
loyaltyprogramcode: jspb.Message.getFieldWithDefault(msg, 27, ""),
|
|
23051
|
+
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 28, 0)
|
|
22930
23052
|
};
|
|
22931
23053
|
|
|
22932
23054
|
if (includeInstance) {
|
|
@@ -23074,6 +23196,10 @@ proto.sniiptransactionapi.PaymentDetailsResponse.deserializeBinaryFromReader = f
|
|
|
23074
23196
|
var value = /** @type {string} */ (reader.readString());
|
|
23075
23197
|
msg.setLoyaltyprogramcode(value);
|
|
23076
23198
|
break;
|
|
23199
|
+
case 28:
|
|
23200
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
23201
|
+
msg.setLoyaltyoptionid(value);
|
|
23202
|
+
break;
|
|
23077
23203
|
default:
|
|
23078
23204
|
reader.skipField();
|
|
23079
23205
|
break;
|
|
@@ -23295,6 +23421,13 @@ proto.sniiptransactionapi.PaymentDetailsResponse.serializeBinaryToWriter = funct
|
|
|
23295
23421
|
f
|
|
23296
23422
|
);
|
|
23297
23423
|
}
|
|
23424
|
+
f = message.getLoyaltyoptionid();
|
|
23425
|
+
if (f !== 0) {
|
|
23426
|
+
writer.writeInt64(
|
|
23427
|
+
28,
|
|
23428
|
+
f
|
|
23429
|
+
);
|
|
23430
|
+
}
|
|
23298
23431
|
};
|
|
23299
23432
|
|
|
23300
23433
|
|
|
@@ -23841,6 +23974,24 @@ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.setLoyaltyprogramcode
|
|
|
23841
23974
|
};
|
|
23842
23975
|
|
|
23843
23976
|
|
|
23977
|
+
/**
|
|
23978
|
+
* optional int64 loyaltyOptionId = 28;
|
|
23979
|
+
* @return {number}
|
|
23980
|
+
*/
|
|
23981
|
+
proto.sniiptransactionapi.PaymentDetailsResponse.prototype.getLoyaltyoptionid = function() {
|
|
23982
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 28, 0));
|
|
23983
|
+
};
|
|
23984
|
+
|
|
23985
|
+
|
|
23986
|
+
/**
|
|
23987
|
+
* @param {number} value
|
|
23988
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsResponse} returns this
|
|
23989
|
+
*/
|
|
23990
|
+
proto.sniiptransactionapi.PaymentDetailsResponse.prototype.setLoyaltyoptionid = function(value) {
|
|
23991
|
+
return jspb.Message.setProto3IntField(this, 28, value);
|
|
23992
|
+
};
|
|
23993
|
+
|
|
23994
|
+
|
|
23844
23995
|
|
|
23845
23996
|
/**
|
|
23846
23997
|
* List of repeated fields within this message type.
|