@sniipwebmaster/transaction-service-client-grpcweb-ts 25.8.13115 → 25.8.13142
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.
|
@@ -249,6 +249,9 @@ export class BillRateItem extends jspb.Message {
|
|
|
249
249
|
getPaymentprocessor(): string;
|
|
250
250
|
setPaymentprocessor(value: string): BillRateItem;
|
|
251
251
|
|
|
252
|
+
getLoyaltyoptionid(): number;
|
|
253
|
+
setLoyaltyoptionid(value: number): BillRateItem;
|
|
254
|
+
|
|
252
255
|
serializeBinary(): Uint8Array;
|
|
253
256
|
toObject(includeInstance?: boolean): BillRateItem.AsObject;
|
|
254
257
|
static toObject(includeInstance: boolean, msg: BillRateItem): BillRateItem.AsObject;
|
|
@@ -267,6 +270,7 @@ export namespace BillRateItem {
|
|
|
267
270
|
tiername: string,
|
|
268
271
|
isbusinesspayment: boolean,
|
|
269
272
|
paymentprocessor: string,
|
|
273
|
+
loyaltyoptionid: number,
|
|
270
274
|
}
|
|
271
275
|
}
|
|
272
276
|
|
|
@@ -2569,9 +2573,6 @@ export class PaymentDetailsBulkResponse extends jspb.Message {
|
|
|
2569
2573
|
getLoyaltyprogramcode(): string;
|
|
2570
2574
|
setLoyaltyprogramcode(value: string): PaymentDetailsBulkResponse;
|
|
2571
2575
|
|
|
2572
|
-
getLoyaltyoptionid(): number;
|
|
2573
|
-
setLoyaltyoptionid(value: number): PaymentDetailsBulkResponse;
|
|
2574
|
-
|
|
2575
2576
|
serializeBinary(): Uint8Array;
|
|
2576
2577
|
toObject(includeInstance?: boolean): PaymentDetailsBulkResponse.AsObject;
|
|
2577
2578
|
static toObject(includeInstance: boolean, msg: PaymentDetailsBulkResponse): PaymentDetailsBulkResponse.AsObject;
|
|
@@ -2602,7 +2603,6 @@ export namespace PaymentDetailsBulkResponse {
|
|
|
2602
2603
|
feediscountmessage: string,
|
|
2603
2604
|
businessratesdisclaimermessage: string,
|
|
2604
2605
|
loyaltyprogramcode: string,
|
|
2605
|
-
loyaltyoptionid: number,
|
|
2606
2606
|
}
|
|
2607
2607
|
}
|
|
2608
2608
|
|
|
@@ -4688,7 +4688,8 @@ proto.sniiptransactionapi.BillRateItem.toObject = function(includeInstance, msg)
|
|
|
4688
4688
|
surcharge: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
|
|
4689
4689
|
tiername: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
4690
4690
|
isbusinesspayment: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
|
|
4691
|
-
paymentprocessor: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
4691
|
+
paymentprocessor: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
4692
|
+
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 9, 0)
|
|
4692
4693
|
};
|
|
4693
4694
|
|
|
4694
4695
|
if (includeInstance) {
|
|
@@ -4757,6 +4758,10 @@ proto.sniiptransactionapi.BillRateItem.deserializeBinaryFromReader = function(ms
|
|
|
4757
4758
|
var value = /** @type {string} */ (reader.readString());
|
|
4758
4759
|
msg.setPaymentprocessor(value);
|
|
4759
4760
|
break;
|
|
4761
|
+
case 9:
|
|
4762
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
4763
|
+
msg.setLoyaltyoptionid(value);
|
|
4764
|
+
break;
|
|
4760
4765
|
default:
|
|
4761
4766
|
reader.skipField();
|
|
4762
4767
|
break;
|
|
@@ -4842,6 +4847,13 @@ proto.sniiptransactionapi.BillRateItem.serializeBinaryToWriter = function(messag
|
|
|
4842
4847
|
f
|
|
4843
4848
|
);
|
|
4844
4849
|
}
|
|
4850
|
+
f = message.getLoyaltyoptionid();
|
|
4851
|
+
if (f !== 0) {
|
|
4852
|
+
writer.writeInt64(
|
|
4853
|
+
9,
|
|
4854
|
+
f
|
|
4855
|
+
);
|
|
4856
|
+
}
|
|
4845
4857
|
};
|
|
4846
4858
|
|
|
4847
4859
|
|
|
@@ -4989,6 +5001,24 @@ proto.sniiptransactionapi.BillRateItem.prototype.setPaymentprocessor = function(
|
|
|
4989
5001
|
};
|
|
4990
5002
|
|
|
4991
5003
|
|
|
5004
|
+
/**
|
|
5005
|
+
* optional int64 loyaltyOptionId = 9;
|
|
5006
|
+
* @return {number}
|
|
5007
|
+
*/
|
|
5008
|
+
proto.sniiptransactionapi.BillRateItem.prototype.getLoyaltyoptionid = function() {
|
|
5009
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
|
|
5010
|
+
};
|
|
5011
|
+
|
|
5012
|
+
|
|
5013
|
+
/**
|
|
5014
|
+
* @param {number} value
|
|
5015
|
+
* @return {!proto.sniiptransactionapi.BillRateItem} returns this
|
|
5016
|
+
*/
|
|
5017
|
+
proto.sniiptransactionapi.BillRateItem.prototype.setLoyaltyoptionid = function(value) {
|
|
5018
|
+
return jspb.Message.setProto3IntField(this, 9, value);
|
|
5019
|
+
};
|
|
5020
|
+
|
|
5021
|
+
|
|
4992
5022
|
|
|
4993
5023
|
|
|
4994
5024
|
|
|
@@ -21740,8 +21770,7 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.toObject = function(include
|
|
|
21740
21770
|
wasfeediscountapplied: jspb.Message.getBooleanFieldWithDefault(msg, 17, false),
|
|
21741
21771
|
feediscountmessage: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
21742
21772
|
businessratesdisclaimermessage: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
21743
|
-
loyaltyprogramcode: jspb.Message.getFieldWithDefault(msg, 20, "")
|
|
21744
|
-
loyaltyoptionid: jspb.Message.getFieldWithDefault(msg, 21, 0)
|
|
21773
|
+
loyaltyprogramcode: jspb.Message.getFieldWithDefault(msg, 20, "")
|
|
21745
21774
|
};
|
|
21746
21775
|
|
|
21747
21776
|
if (includeInstance) {
|
|
@@ -21862,10 +21891,6 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.deserializeBinaryFromReader
|
|
|
21862
21891
|
var value = /** @type {string} */ (reader.readString());
|
|
21863
21892
|
msg.setLoyaltyprogramcode(value);
|
|
21864
21893
|
break;
|
|
21865
|
-
case 21:
|
|
21866
|
-
var value = /** @type {number} */ (reader.readInt64());
|
|
21867
|
-
msg.setLoyaltyoptionid(value);
|
|
21868
|
-
break;
|
|
21869
21894
|
default:
|
|
21870
21895
|
reader.skipField();
|
|
21871
21896
|
break;
|
|
@@ -22037,13 +22062,6 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.serializeBinaryToWriter = f
|
|
|
22037
22062
|
f
|
|
22038
22063
|
);
|
|
22039
22064
|
}
|
|
22040
|
-
f = message.getLoyaltyoptionid();
|
|
22041
|
-
if (f !== 0) {
|
|
22042
|
-
writer.writeInt64(
|
|
22043
|
-
21,
|
|
22044
|
-
f
|
|
22045
|
-
);
|
|
22046
|
-
}
|
|
22047
22065
|
};
|
|
22048
22066
|
|
|
22049
22067
|
|
|
@@ -22465,24 +22483,6 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setLoyaltyprogram
|
|
|
22465
22483
|
};
|
|
22466
22484
|
|
|
22467
22485
|
|
|
22468
|
-
/**
|
|
22469
|
-
* optional int64 loyaltyOptionId = 21;
|
|
22470
|
-
* @return {number}
|
|
22471
|
-
*/
|
|
22472
|
-
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.getLoyaltyoptionid = function() {
|
|
22473
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 21, 0));
|
|
22474
|
-
};
|
|
22475
|
-
|
|
22476
|
-
|
|
22477
|
-
/**
|
|
22478
|
-
* @param {number} value
|
|
22479
|
-
* @return {!proto.sniiptransactionapi.PaymentDetailsBulkResponse} returns this
|
|
22480
|
-
*/
|
|
22481
|
-
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setLoyaltyoptionid = function(value) {
|
|
22482
|
-
return jspb.Message.setProto3IntField(this, 21, value);
|
|
22483
|
-
};
|
|
22484
|
-
|
|
22485
|
-
|
|
22486
22486
|
|
|
22487
22487
|
|
|
22488
22488
|
|