@sniipwebmaster/payment-methods-client-grpcweb 25.11.7504 → 25.11.7528
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 +31 -1
- package/package.json +1 -1
|
@@ -6804,7 +6804,8 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.toObject = function(include
|
|
|
6804
6804
|
bankaccountvalidationdetailstext: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
6805
6805
|
paytoagreementstatus: jspb.Message.getFieldWithDefault(msg, 17, 0),
|
|
6806
6806
|
aliasresolutionlogid: jspb.Message.getFieldWithDefault(msg, 18, 0),
|
|
6807
|
-
formattedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 19, "")
|
|
6807
|
+
formattedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
6808
|
+
maskedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 20, "")
|
|
6808
6809
|
};
|
|
6809
6810
|
|
|
6810
6811
|
if (includeInstance) {
|
|
@@ -6914,6 +6915,10 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.deserializeBinaryFromReader
|
|
|
6914
6915
|
var value = /** @type {string} */ (reader.readString());
|
|
6915
6916
|
msg.setFormattedpaymentmethodnumber(value);
|
|
6916
6917
|
break;
|
|
6918
|
+
case 20:
|
|
6919
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6920
|
+
msg.setMaskedpaymentmethodnumber(value);
|
|
6921
|
+
break;
|
|
6917
6922
|
default:
|
|
6918
6923
|
reader.skipField();
|
|
6919
6924
|
break;
|
|
@@ -7070,6 +7075,13 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.serializeBinaryToWriter = f
|
|
|
7070
7075
|
f
|
|
7071
7076
|
);
|
|
7072
7077
|
}
|
|
7078
|
+
f = message.getMaskedpaymentmethodnumber();
|
|
7079
|
+
if (f.length > 0) {
|
|
7080
|
+
writer.writeString(
|
|
7081
|
+
20,
|
|
7082
|
+
f
|
|
7083
|
+
);
|
|
7084
|
+
}
|
|
7073
7085
|
};
|
|
7074
7086
|
|
|
7075
7087
|
|
|
@@ -7452,6 +7464,24 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setFormattedpayme
|
|
|
7452
7464
|
};
|
|
7453
7465
|
|
|
7454
7466
|
|
|
7467
|
+
/**
|
|
7468
|
+
* optional string maskedPaymentMethodNumber = 20;
|
|
7469
|
+
* @return {string}
|
|
7470
|
+
*/
|
|
7471
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getMaskedpaymentmethodnumber = function() {
|
|
7472
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 20, ""));
|
|
7473
|
+
};
|
|
7474
|
+
|
|
7475
|
+
|
|
7476
|
+
/**
|
|
7477
|
+
* @param {string} value
|
|
7478
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
7479
|
+
*/
|
|
7480
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setMaskedpaymentmethodnumber = function(value) {
|
|
7481
|
+
return jspb.Message.setProto3StringField(this, 20, value);
|
|
7482
|
+
};
|
|
7483
|
+
|
|
7484
|
+
|
|
7455
7485
|
|
|
7456
7486
|
|
|
7457
7487
|
|