@sniipwebmaster/payment-methods-client-grpcweb 21.6.3119 → 21.7.3145
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
|
@@ -3815,7 +3815,8 @@ proto.sniippaymentmethodsserviceapi.CreditCard.toObject = function(includeInstan
|
|
|
3815
3815
|
isverified: msg.getIsverified(),
|
|
3816
3816
|
attemptedverification: msg.getAttemptedverification(),
|
|
3817
3817
|
iseftpos: msg.getIseftpos(),
|
|
3818
|
-
isinternational: msg.getIsinternational()
|
|
3818
|
+
isinternational: msg.getIsinternational(),
|
|
3819
|
+
isprepaid: msg.getIsprepaid()
|
|
3819
3820
|
};
|
|
3820
3821
|
|
|
3821
3822
|
if (includeInstance) {
|
|
@@ -3921,6 +3922,10 @@ proto.sniippaymentmethodsserviceapi.CreditCard.deserializeBinaryFromReader = fun
|
|
|
3921
3922
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
3922
3923
|
msg.setIsinternational(value);
|
|
3923
3924
|
break;
|
|
3925
|
+
case 18:
|
|
3926
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
3927
|
+
msg.setIsprepaid(value);
|
|
3928
|
+
break;
|
|
3924
3929
|
default:
|
|
3925
3930
|
reader.skipField();
|
|
3926
3931
|
break;
|
|
@@ -4079,6 +4084,13 @@ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.serializeBinaryToWriter
|
|
|
4079
4084
|
f
|
|
4080
4085
|
);
|
|
4081
4086
|
}
|
|
4087
|
+
f = this.getIsprepaid();
|
|
4088
|
+
if (f) {
|
|
4089
|
+
writer.writeBool(
|
|
4090
|
+
18,
|
|
4091
|
+
f
|
|
4092
|
+
);
|
|
4093
|
+
}
|
|
4082
4094
|
};
|
|
4083
4095
|
|
|
4084
4096
|
|
|
@@ -4373,6 +4385,23 @@ proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setIsinternational = fu
|
|
|
4373
4385
|
};
|
|
4374
4386
|
|
|
4375
4387
|
|
|
4388
|
+
/**
|
|
4389
|
+
* optional bool isPrepaid = 18;
|
|
4390
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
4391
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
4392
|
+
* @return {boolean}
|
|
4393
|
+
*/
|
|
4394
|
+
proto.sniippaymentmethodsserviceapi.CreditCard.prototype.getIsprepaid = function() {
|
|
4395
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 18, false));
|
|
4396
|
+
};
|
|
4397
|
+
|
|
4398
|
+
|
|
4399
|
+
/** @param {boolean} value */
|
|
4400
|
+
proto.sniippaymentmethodsserviceapi.CreditCard.prototype.setIsprepaid = function(value) {
|
|
4401
|
+
jspb.Message.setField(this, 18, value);
|
|
4402
|
+
};
|
|
4403
|
+
|
|
4404
|
+
|
|
4376
4405
|
|
|
4377
4406
|
/**
|
|
4378
4407
|
* Generated by JsPbCodeGenerator.
|