@sniipwebmaster/transaction-service-client-grpcweb-ts 25.2.12266 → 25.2.12294
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.
|
@@ -2516,6 +2516,9 @@ export class PaymentDetailsBulkResponse extends jspb.Message {
|
|
|
2516
2516
|
getBusinessratesdisclaimermessage(): string;
|
|
2517
2517
|
setBusinessratesdisclaimermessage(value: string): PaymentDetailsBulkResponse;
|
|
2518
2518
|
|
|
2519
|
+
getLoyaltyprogramcode(): string;
|
|
2520
|
+
setLoyaltyprogramcode(value: string): PaymentDetailsBulkResponse;
|
|
2521
|
+
|
|
2519
2522
|
serializeBinary(): Uint8Array;
|
|
2520
2523
|
toObject(includeInstance?: boolean): PaymentDetailsBulkResponse.AsObject;
|
|
2521
2524
|
static toObject(includeInstance: boolean, msg: PaymentDetailsBulkResponse): PaymentDetailsBulkResponse.AsObject;
|
|
@@ -2545,6 +2548,7 @@ export namespace PaymentDetailsBulkResponse {
|
|
|
2545
2548
|
wasfeediscountapplied: boolean,
|
|
2546
2549
|
feediscountmessage: string,
|
|
2547
2550
|
businessratesdisclaimermessage: string,
|
|
2551
|
+
loyaltyprogramcode: string,
|
|
2548
2552
|
}
|
|
2549
2553
|
}
|
|
2550
2554
|
|
|
@@ -2713,6 +2717,9 @@ export class PaymentDetailsResponse extends jspb.Message {
|
|
|
2713
2717
|
hasGooglepaydetails(): boolean;
|
|
2714
2718
|
clearGooglepaydetails(): PaymentDetailsResponse;
|
|
2715
2719
|
|
|
2720
|
+
getLoyaltyprogramcode(): string;
|
|
2721
|
+
setLoyaltyprogramcode(value: string): PaymentDetailsResponse;
|
|
2722
|
+
|
|
2716
2723
|
serializeBinary(): Uint8Array;
|
|
2717
2724
|
toObject(includeInstance?: boolean): PaymentDetailsResponse.AsObject;
|
|
2718
2725
|
static toObject(includeInstance: boolean, msg: PaymentDetailsResponse): PaymentDetailsResponse.AsObject;
|
|
@@ -2749,6 +2756,7 @@ export namespace PaymentDetailsResponse {
|
|
|
2749
2756
|
businessratesdisclaimermessage: string,
|
|
2750
2757
|
applepaydetails?: ApplePayDetails.AsObject,
|
|
2751
2758
|
googlepaydetails?: GooglePayDetails.AsObject,
|
|
2759
|
+
loyaltyprogramcode: string,
|
|
2752
2760
|
}
|
|
2753
2761
|
|
|
2754
2762
|
export enum ApplepaydetailsCase {
|
|
@@ -21346,7 +21346,8 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.toObject = function(include
|
|
|
21346
21346
|
loyaltypointslabel: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
21347
21347
|
wasfeediscountapplied: jspb.Message.getBooleanFieldWithDefault(msg, 17, false),
|
|
21348
21348
|
feediscountmessage: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
21349
|
-
businessratesdisclaimermessage: jspb.Message.getFieldWithDefault(msg, 19, "")
|
|
21349
|
+
businessratesdisclaimermessage: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
21350
|
+
loyaltyprogramcode: jspb.Message.getFieldWithDefault(msg, 20, "")
|
|
21350
21351
|
};
|
|
21351
21352
|
|
|
21352
21353
|
if (includeInstance) {
|
|
@@ -21463,6 +21464,10 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.deserializeBinaryFromReader
|
|
|
21463
21464
|
var value = /** @type {string} */ (reader.readString());
|
|
21464
21465
|
msg.setBusinessratesdisclaimermessage(value);
|
|
21465
21466
|
break;
|
|
21467
|
+
case 20:
|
|
21468
|
+
var value = /** @type {string} */ (reader.readString());
|
|
21469
|
+
msg.setLoyaltyprogramcode(value);
|
|
21470
|
+
break;
|
|
21466
21471
|
default:
|
|
21467
21472
|
reader.skipField();
|
|
21468
21473
|
break;
|
|
@@ -21627,6 +21632,13 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.serializeBinaryToWriter = f
|
|
|
21627
21632
|
f
|
|
21628
21633
|
);
|
|
21629
21634
|
}
|
|
21635
|
+
f = message.getLoyaltyprogramcode();
|
|
21636
|
+
if (f.length > 0) {
|
|
21637
|
+
writer.writeString(
|
|
21638
|
+
20,
|
|
21639
|
+
f
|
|
21640
|
+
);
|
|
21641
|
+
}
|
|
21630
21642
|
};
|
|
21631
21643
|
|
|
21632
21644
|
|
|
@@ -22030,6 +22042,24 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setBusinessratesd
|
|
|
22030
22042
|
};
|
|
22031
22043
|
|
|
22032
22044
|
|
|
22045
|
+
/**
|
|
22046
|
+
* optional string loyaltyProgramCode = 20;
|
|
22047
|
+
* @return {string}
|
|
22048
|
+
*/
|
|
22049
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.getLoyaltyprogramcode = function() {
|
|
22050
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 20, ""));
|
|
22051
|
+
};
|
|
22052
|
+
|
|
22053
|
+
|
|
22054
|
+
/**
|
|
22055
|
+
* @param {string} value
|
|
22056
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsBulkResponse} returns this
|
|
22057
|
+
*/
|
|
22058
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setLoyaltyprogramcode = function(value) {
|
|
22059
|
+
return jspb.Message.setProto3StringField(this, 20, value);
|
|
22060
|
+
};
|
|
22061
|
+
|
|
22062
|
+
|
|
22033
22063
|
|
|
22034
22064
|
|
|
22035
22065
|
|
|
@@ -22620,7 +22650,8 @@ proto.sniiptransactionapi.PaymentDetailsResponse.toObject = function(includeInst
|
|
|
22620
22650
|
feediscountmessage: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
22621
22651
|
businessratesdisclaimermessage: jspb.Message.getFieldWithDefault(msg, 24, ""),
|
|
22622
22652
|
applepaydetails: (f = msg.getApplepaydetails()) && proto.sniiptransactionapi.ApplePayDetails.toObject(includeInstance, f),
|
|
22623
|
-
googlepaydetails: (f = msg.getGooglepaydetails()) && proto.sniiptransactionapi.GooglePayDetails.toObject(includeInstance, f)
|
|
22653
|
+
googlepaydetails: (f = msg.getGooglepaydetails()) && proto.sniiptransactionapi.GooglePayDetails.toObject(includeInstance, f),
|
|
22654
|
+
loyaltyprogramcode: jspb.Message.getFieldWithDefault(msg, 27, "")
|
|
22624
22655
|
};
|
|
22625
22656
|
|
|
22626
22657
|
if (includeInstance) {
|
|
@@ -22764,6 +22795,10 @@ proto.sniiptransactionapi.PaymentDetailsResponse.deserializeBinaryFromReader = f
|
|
|
22764
22795
|
reader.readMessage(value,proto.sniiptransactionapi.GooglePayDetails.deserializeBinaryFromReader);
|
|
22765
22796
|
msg.setGooglepaydetails(value);
|
|
22766
22797
|
break;
|
|
22798
|
+
case 27:
|
|
22799
|
+
var value = /** @type {string} */ (reader.readString());
|
|
22800
|
+
msg.setLoyaltyprogramcode(value);
|
|
22801
|
+
break;
|
|
22767
22802
|
default:
|
|
22768
22803
|
reader.skipField();
|
|
22769
22804
|
break;
|
|
@@ -22978,6 +23013,13 @@ proto.sniiptransactionapi.PaymentDetailsResponse.serializeBinaryToWriter = funct
|
|
|
22978
23013
|
proto.sniiptransactionapi.GooglePayDetails.serializeBinaryToWriter
|
|
22979
23014
|
);
|
|
22980
23015
|
}
|
|
23016
|
+
f = message.getLoyaltyprogramcode();
|
|
23017
|
+
if (f.length > 0) {
|
|
23018
|
+
writer.writeString(
|
|
23019
|
+
27,
|
|
23020
|
+
f
|
|
23021
|
+
);
|
|
23022
|
+
}
|
|
22981
23023
|
};
|
|
22982
23024
|
|
|
22983
23025
|
|
|
@@ -23506,6 +23548,24 @@ proto.sniiptransactionapi.PaymentDetailsResponse.prototype.hasGooglepaydetails =
|
|
|
23506
23548
|
};
|
|
23507
23549
|
|
|
23508
23550
|
|
|
23551
|
+
/**
|
|
23552
|
+
* optional string loyaltyProgramCode = 27;
|
|
23553
|
+
* @return {string}
|
|
23554
|
+
*/
|
|
23555
|
+
proto.sniiptransactionapi.PaymentDetailsResponse.prototype.getLoyaltyprogramcode = function() {
|
|
23556
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 27, ""));
|
|
23557
|
+
};
|
|
23558
|
+
|
|
23559
|
+
|
|
23560
|
+
/**
|
|
23561
|
+
* @param {string} value
|
|
23562
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsResponse} returns this
|
|
23563
|
+
*/
|
|
23564
|
+
proto.sniiptransactionapi.PaymentDetailsResponse.prototype.setLoyaltyprogramcode = function(value) {
|
|
23565
|
+
return jspb.Message.setProto3StringField(this, 27, value);
|
|
23566
|
+
};
|
|
23567
|
+
|
|
23568
|
+
|
|
23509
23569
|
|
|
23510
23570
|
/**
|
|
23511
23571
|
* List of repeated fields within this message type.
|