@sniipwebmaster/payment-methods-client-grpcweb 26.9.9298 → 26.9.9307
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 +61 -1
- package/package.json +1 -1
|
@@ -18398,7 +18398,9 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.toObject = function(include
|
|
|
18398
18398
|
cardsubtypecode: jspb.Message.getFieldWithDefault(msg, 29, ""),
|
|
18399
18399
|
cardsubtypedisplayname: jspb.Message.getFieldWithDefault(msg, 30, ""),
|
|
18400
18400
|
bin: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
18401
|
-
cardcountry: jspb.Message.getFieldWithDefault(msg, 32, "")
|
|
18401
|
+
cardcountry: jspb.Message.getFieldWithDefault(msg, 32, ""),
|
|
18402
|
+
accountnameinquiryresult: jspb.Message.getFieldWithDefault(msg, 33, ""),
|
|
18403
|
+
accountnameinquirydetail: jspb.Message.getFieldWithDefault(msg, 34, "")
|
|
18402
18404
|
};
|
|
18403
18405
|
|
|
18404
18406
|
if (includeInstance) {
|
|
@@ -18564,6 +18566,14 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.deserializeBinaryFromReader
|
|
|
18564
18566
|
var value = /** @type {string} */ (reader.readString());
|
|
18565
18567
|
msg.setCardcountry(value);
|
|
18566
18568
|
break;
|
|
18569
|
+
case 33:
|
|
18570
|
+
var value = /** @type {string} */ (reader.readString());
|
|
18571
|
+
msg.setAccountnameinquiryresult(value);
|
|
18572
|
+
break;
|
|
18573
|
+
case 34:
|
|
18574
|
+
var value = /** @type {string} */ (reader.readString());
|
|
18575
|
+
msg.setAccountnameinquirydetail(value);
|
|
18576
|
+
break;
|
|
18567
18577
|
default:
|
|
18568
18578
|
reader.skipField();
|
|
18569
18579
|
break;
|
|
@@ -18818,6 +18828,20 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.serializeBinaryToWriter = f
|
|
|
18818
18828
|
f
|
|
18819
18829
|
);
|
|
18820
18830
|
}
|
|
18831
|
+
f = message.getAccountnameinquiryresult();
|
|
18832
|
+
if (f.length > 0) {
|
|
18833
|
+
writer.writeString(
|
|
18834
|
+
33,
|
|
18835
|
+
f
|
|
18836
|
+
);
|
|
18837
|
+
}
|
|
18838
|
+
f = message.getAccountnameinquirydetail();
|
|
18839
|
+
if (f.length > 0) {
|
|
18840
|
+
writer.writeString(
|
|
18841
|
+
34,
|
|
18842
|
+
f
|
|
18843
|
+
);
|
|
18844
|
+
}
|
|
18821
18845
|
};
|
|
18822
18846
|
|
|
18823
18847
|
|
|
@@ -19416,6 +19440,42 @@ proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setCardcountry =
|
|
|
19416
19440
|
};
|
|
19417
19441
|
|
|
19418
19442
|
|
|
19443
|
+
/**
|
|
19444
|
+
* optional string accountNameInquiryResult = 33;
|
|
19445
|
+
* @return {string}
|
|
19446
|
+
*/
|
|
19447
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.getAccountnameinquiryresult = function() {
|
|
19448
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 33, ""));
|
|
19449
|
+
};
|
|
19450
|
+
|
|
19451
|
+
|
|
19452
|
+
/**
|
|
19453
|
+
* @param {string} value
|
|
19454
|
+
* @return {!proto.sniippaymentmethodsserviceapi.MaskedCreditCard} returns this
|
|
19455
|
+
*/
|
|
19456
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setAccountnameinquiryresult = function(value) {
|
|
19457
|
+
return jspb.Message.setProto3StringField(this, 33, value);
|
|
19458
|
+
};
|
|
19459
|
+
|
|
19460
|
+
|
|
19461
|
+
/**
|
|
19462
|
+
* optional string accountNameInquiryDetail = 34;
|
|
19463
|
+
* @return {string}
|
|
19464
|
+
*/
|
|
19465
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.getAccountnameinquirydetail = function() {
|
|
19466
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 34, ""));
|
|
19467
|
+
};
|
|
19468
|
+
|
|
19469
|
+
|
|
19470
|
+
/**
|
|
19471
|
+
* @param {string} value
|
|
19472
|
+
* @return {!proto.sniippaymentmethodsserviceapi.MaskedCreditCard} returns this
|
|
19473
|
+
*/
|
|
19474
|
+
proto.sniippaymentmethodsserviceapi.MaskedCreditCard.prototype.setAccountnameinquirydetail = function(value) {
|
|
19475
|
+
return jspb.Message.setProto3StringField(this, 34, value);
|
|
19476
|
+
};
|
|
19477
|
+
|
|
19478
|
+
|
|
19419
19479
|
|
|
19420
19480
|
|
|
19421
19481
|
|