@sniipwebmaster/payment-methods-client-grpcweb 21.6.3083 → 21.6.3101
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.js +30 -1
- package/package.json +1 -1
|
@@ -7297,7 +7297,8 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.toObject = function(include
|
|
|
7297
7297
|
isdebitcard: msg.getIsdebitcard(),
|
|
7298
7298
|
isverified: msg.getIsverified(),
|
|
7299
7299
|
iseftpos: msg.getIseftpos(),
|
|
7300
|
-
isinternational: msg.getIsinternational()
|
|
7300
|
+
isinternational: msg.getIsinternational(),
|
|
7301
|
+
isprepaid: msg.getIsprepaid()
|
|
7301
7302
|
};
|
|
7302
7303
|
|
|
7303
7304
|
if (includeInstance) {
|
|
@@ -7407,6 +7408,10 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.deserializeBinaryFromReader
|
|
|
7407
7408
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
7408
7409
|
msg.setIsinternational(value);
|
|
7409
7410
|
break;
|
|
7411
|
+
case 19:
|
|
7412
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
7413
|
+
msg.setIsprepaid(value);
|
|
7414
|
+
break;
|
|
7410
7415
|
default:
|
|
7411
7416
|
reader.skipField();
|
|
7412
7417
|
break;
|
|
@@ -7572,6 +7577,13 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.serializeBinaryTo
|
|
|
7572
7577
|
f
|
|
7573
7578
|
);
|
|
7574
7579
|
}
|
|
7580
|
+
f = this.getIsprepaid();
|
|
7581
|
+
if (f) {
|
|
7582
|
+
writer.writeBool(
|
|
7583
|
+
19,
|
|
7584
|
+
f
|
|
7585
|
+
);
|
|
7586
|
+
}
|
|
7575
7587
|
};
|
|
7576
7588
|
|
|
7577
7589
|
|
|
@@ -7881,6 +7893,23 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setIsinternationa
|
|
|
7881
7893
|
};
|
|
7882
7894
|
|
|
7883
7895
|
|
|
7896
|
+
/**
|
|
7897
|
+
* optional bool isPrepaid = 19;
|
|
7898
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
7899
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
7900
|
+
* @return {boolean}
|
|
7901
|
+
*/
|
|
7902
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.getIsprepaid = function() {
|
|
7903
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 19, false));
|
|
7904
|
+
};
|
|
7905
|
+
|
|
7906
|
+
|
|
7907
|
+
/** @param {boolean} value */
|
|
7908
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setIsprepaid = function(value) {
|
|
7909
|
+
jspb.Message.setField(this, 19, value);
|
|
7910
|
+
};
|
|
7911
|
+
|
|
7912
|
+
|
|
7884
7913
|
|
|
7885
7914
|
/**
|
|
7886
7915
|
* Generated by JsPbCodeGenerator.
|