@sniipwebmaster/payment-methods-client-grpcweb-ts 25.3.6286 → 25.3.6314
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.
|
@@ -1389,6 +1389,12 @@ export class GooglePay extends jspb.Message {
|
|
|
1389
1389
|
getCardvariant(): string;
|
|
1390
1390
|
setCardvariant(value: string): GooglePay;
|
|
1391
1391
|
|
|
1392
|
+
getIsbusiness(): boolean;
|
|
1393
|
+
setIsbusiness(value: boolean): GooglePay;
|
|
1394
|
+
|
|
1395
|
+
getPaymentprocessor(): PaymentProcessor;
|
|
1396
|
+
setPaymentprocessor(value: PaymentProcessor): GooglePay;
|
|
1397
|
+
|
|
1392
1398
|
serializeBinary(): Uint8Array;
|
|
1393
1399
|
toObject(includeInstance?: boolean): GooglePay.AsObject;
|
|
1394
1400
|
static toObject(includeInstance: boolean, msg: GooglePay): GooglePay.AsObject;
|
|
@@ -1403,6 +1409,8 @@ export namespace GooglePay {
|
|
|
1403
1409
|
gateway: Gateway,
|
|
1404
1410
|
paymentType: string,
|
|
1405
1411
|
cardvariant: string,
|
|
1412
|
+
isbusiness: boolean,
|
|
1413
|
+
paymentprocessor: PaymentProcessor,
|
|
1406
1414
|
}
|
|
1407
1415
|
}
|
|
1408
1416
|
|
|
@@ -2948,3 +2956,8 @@ export enum Gateway {
|
|
|
2948
2956
|
TILL = 2,
|
|
2949
2957
|
CYBERSOURCE = 3,
|
|
2950
2958
|
}
|
|
2959
|
+
export enum PaymentProcessor {
|
|
2960
|
+
BPAY = 0,
|
|
2961
|
+
SME = 1,
|
|
2962
|
+
SNIIP = 2,
|
|
2963
|
+
}
|
|
@@ -90,6 +90,7 @@ goog.exportSymbol('proto.sniippaymentmethodsserviceapi.PaymentMethodsDigitalRequ
|
|
|
90
90
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest', null, global);
|
|
91
91
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.PaymentMethodsInternalGetRequest', null, global);
|
|
92
92
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.PaymentMethodsResponse', null, global);
|
|
93
|
+
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.PaymentProcessor', null, global);
|
|
93
94
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.RemovePaymentMethodRequest', null, global);
|
|
94
95
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.ResponseCode', null, global);
|
|
95
96
|
goog.exportSymbol('proto.sniippaymentmethodsserviceapi.SendPaymentMethodExpiringForScheduledPaymentsNotificationRequest', null, global);
|
|
@@ -12446,7 +12447,9 @@ proto.sniippaymentmethodsserviceapi.GooglePay.toObject = function(includeInstanc
|
|
|
12446
12447
|
paymentdatajson: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
12447
12448
|
gateway: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
12448
12449
|
paymentType: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
12449
|
-
cardvariant: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
12450
|
+
cardvariant: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
12451
|
+
isbusiness: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
12452
|
+
paymentprocessor: jspb.Message.getFieldWithDefault(msg, 6, 0)
|
|
12450
12453
|
};
|
|
12451
12454
|
|
|
12452
12455
|
if (includeInstance) {
|
|
@@ -12499,6 +12502,14 @@ proto.sniippaymentmethodsserviceapi.GooglePay.deserializeBinaryFromReader = func
|
|
|
12499
12502
|
var value = /** @type {string} */ (reader.readString());
|
|
12500
12503
|
msg.setCardvariant(value);
|
|
12501
12504
|
break;
|
|
12505
|
+
case 5:
|
|
12506
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
12507
|
+
msg.setIsbusiness(value);
|
|
12508
|
+
break;
|
|
12509
|
+
case 6:
|
|
12510
|
+
var value = /** @type {!proto.sniippaymentmethodsserviceapi.PaymentProcessor} */ (reader.readEnum());
|
|
12511
|
+
msg.setPaymentprocessor(value);
|
|
12512
|
+
break;
|
|
12502
12513
|
default:
|
|
12503
12514
|
reader.skipField();
|
|
12504
12515
|
break;
|
|
@@ -12556,6 +12567,20 @@ proto.sniippaymentmethodsserviceapi.GooglePay.serializeBinaryToWriter = function
|
|
|
12556
12567
|
f
|
|
12557
12568
|
);
|
|
12558
12569
|
}
|
|
12570
|
+
f = message.getIsbusiness();
|
|
12571
|
+
if (f) {
|
|
12572
|
+
writer.writeBool(
|
|
12573
|
+
5,
|
|
12574
|
+
f
|
|
12575
|
+
);
|
|
12576
|
+
}
|
|
12577
|
+
f = message.getPaymentprocessor();
|
|
12578
|
+
if (f !== 0.0) {
|
|
12579
|
+
writer.writeEnum(
|
|
12580
|
+
6,
|
|
12581
|
+
f
|
|
12582
|
+
);
|
|
12583
|
+
}
|
|
12559
12584
|
};
|
|
12560
12585
|
|
|
12561
12586
|
|
|
@@ -12631,6 +12656,42 @@ proto.sniippaymentmethodsserviceapi.GooglePay.prototype.setCardvariant = functio
|
|
|
12631
12656
|
};
|
|
12632
12657
|
|
|
12633
12658
|
|
|
12659
|
+
/**
|
|
12660
|
+
* optional bool isBusiness = 5;
|
|
12661
|
+
* @return {boolean}
|
|
12662
|
+
*/
|
|
12663
|
+
proto.sniippaymentmethodsserviceapi.GooglePay.prototype.getIsbusiness = function() {
|
|
12664
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
|
|
12665
|
+
};
|
|
12666
|
+
|
|
12667
|
+
|
|
12668
|
+
/**
|
|
12669
|
+
* @param {boolean} value
|
|
12670
|
+
* @return {!proto.sniippaymentmethodsserviceapi.GooglePay} returns this
|
|
12671
|
+
*/
|
|
12672
|
+
proto.sniippaymentmethodsserviceapi.GooglePay.prototype.setIsbusiness = function(value) {
|
|
12673
|
+
return jspb.Message.setProto3BooleanField(this, 5, value);
|
|
12674
|
+
};
|
|
12675
|
+
|
|
12676
|
+
|
|
12677
|
+
/**
|
|
12678
|
+
* optional PaymentProcessor paymentProcessor = 6;
|
|
12679
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaymentProcessor}
|
|
12680
|
+
*/
|
|
12681
|
+
proto.sniippaymentmethodsserviceapi.GooglePay.prototype.getPaymentprocessor = function() {
|
|
12682
|
+
return /** @type {!proto.sniippaymentmethodsserviceapi.PaymentProcessor} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
12683
|
+
};
|
|
12684
|
+
|
|
12685
|
+
|
|
12686
|
+
/**
|
|
12687
|
+
* @param {!proto.sniippaymentmethodsserviceapi.PaymentProcessor} value
|
|
12688
|
+
* @return {!proto.sniippaymentmethodsserviceapi.GooglePay} returns this
|
|
12689
|
+
*/
|
|
12690
|
+
proto.sniippaymentmethodsserviceapi.GooglePay.prototype.setPaymentprocessor = function(value) {
|
|
12691
|
+
return jspb.Message.setProto3EnumField(this, 6, value);
|
|
12692
|
+
};
|
|
12693
|
+
|
|
12694
|
+
|
|
12634
12695
|
|
|
12635
12696
|
|
|
12636
12697
|
|
|
@@ -24333,4 +24394,13 @@ proto.sniippaymentmethodsserviceapi.Gateway = {
|
|
|
24333
24394
|
CYBERSOURCE: 3
|
|
24334
24395
|
};
|
|
24335
24396
|
|
|
24397
|
+
/**
|
|
24398
|
+
* @enum {number}
|
|
24399
|
+
*/
|
|
24400
|
+
proto.sniippaymentmethodsserviceapi.PaymentProcessor = {
|
|
24401
|
+
BPAY: 0,
|
|
24402
|
+
SME: 1,
|
|
24403
|
+
SNIIP: 2
|
|
24404
|
+
};
|
|
24405
|
+
|
|
24336
24406
|
goog.object.extend(exports, proto.sniippaymentmethodsserviceapi);
|