@sniipwebmaster/payment-methods-client-grpcweb 0.2.2671 → 0.2.2680
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.
|
@@ -10318,7 +10318,7 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodType.toObject = function(includ
|
|
|
10318
10318
|
allowdebit: msg.getAllowdebit(),
|
|
10319
10319
|
allowcredit: msg.getAllowcredit(),
|
|
10320
10320
|
eftposonly: msg.getEftposonly(),
|
|
10321
|
-
|
|
10321
|
+
allowinternational: msg.getAllowinternational(),
|
|
10322
10322
|
displayname: msg.getDisplayname()
|
|
10323
10323
|
};
|
|
10324
10324
|
|
|
@@ -10378,7 +10378,7 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodType.deserializeBinaryFromReade
|
|
|
10378
10378
|
break;
|
|
10379
10379
|
case 6:
|
|
10380
10380
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
10381
|
-
msg.
|
|
10381
|
+
msg.setAllowinternational(value);
|
|
10382
10382
|
break;
|
|
10383
10383
|
case 7:
|
|
10384
10384
|
var value = /** @type {string} */ (reader.readString());
|
|
@@ -10457,7 +10457,7 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodType.prototype.serializeBinaryT
|
|
|
10457
10457
|
f
|
|
10458
10458
|
);
|
|
10459
10459
|
}
|
|
10460
|
-
f = this.
|
|
10460
|
+
f = this.getAllowinternational();
|
|
10461
10461
|
if (f) {
|
|
10462
10462
|
writer.writeBool(
|
|
10463
10463
|
6,
|
|
@@ -10565,18 +10565,18 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodType.prototype.setEftposonly =
|
|
|
10565
10565
|
|
|
10566
10566
|
|
|
10567
10567
|
/**
|
|
10568
|
-
* optional bool
|
|
10568
|
+
* optional bool allowInternational = 6;
|
|
10569
10569
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
10570
10570
|
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
10571
10571
|
* @return {boolean}
|
|
10572
10572
|
*/
|
|
10573
|
-
proto.sniippaymentmethodsserviceapi.PaymentMethodType.prototype.
|
|
10573
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodType.prototype.getAllowinternational = function() {
|
|
10574
10574
|
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 6, false));
|
|
10575
10575
|
};
|
|
10576
10576
|
|
|
10577
10577
|
|
|
10578
10578
|
/** @param {boolean} value */
|
|
10579
|
-
proto.sniippaymentmethodsserviceapi.PaymentMethodType.prototype.
|
|
10579
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodType.prototype.setAllowinternational = function(value) {
|
|
10580
10580
|
jspb.Message.setField(this, 6, value);
|
|
10581
10581
|
};
|
|
10582
10582
|
|