@sniipwebmaster/payment-methods-client-grpcweb 25.11.7536 → 25.11.7552
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
|
@@ -6805,7 +6805,9 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.toObject = function(include
|
|
|
6805
6805
|
paytoagreementstatus: jspb.Message.getFieldWithDefault(msg, 17, 0),
|
|
6806
6806
|
aliasresolutionlogid: jspb.Message.getFieldWithDefault(msg, 18, 0),
|
|
6807
6807
|
formattedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
6808
|
-
maskedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 20, "")
|
|
6808
|
+
maskedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 20, ""),
|
|
6809
|
+
verifyexpiry: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
6810
|
+
verifiedat: jspb.Message.getFieldWithDefault(msg, 22, "")
|
|
6809
6811
|
};
|
|
6810
6812
|
|
|
6811
6813
|
if (includeInstance) {
|
|
@@ -6919,6 +6921,14 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.deserializeBinaryFromReader
|
|
|
6919
6921
|
var value = /** @type {string} */ (reader.readString());
|
|
6920
6922
|
msg.setMaskedpaymentmethodnumber(value);
|
|
6921
6923
|
break;
|
|
6924
|
+
case 21:
|
|
6925
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6926
|
+
msg.setVerifyexpiry(value);
|
|
6927
|
+
break;
|
|
6928
|
+
case 22:
|
|
6929
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6930
|
+
msg.setVerifiedat(value);
|
|
6931
|
+
break;
|
|
6922
6932
|
default:
|
|
6923
6933
|
reader.skipField();
|
|
6924
6934
|
break;
|
|
@@ -7082,6 +7092,20 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.serializeBinaryToWriter = f
|
|
|
7082
7092
|
f
|
|
7083
7093
|
);
|
|
7084
7094
|
}
|
|
7095
|
+
f = message.getVerifyexpiry();
|
|
7096
|
+
if (f.length > 0) {
|
|
7097
|
+
writer.writeString(
|
|
7098
|
+
21,
|
|
7099
|
+
f
|
|
7100
|
+
);
|
|
7101
|
+
}
|
|
7102
|
+
f = message.getVerifiedat();
|
|
7103
|
+
if (f.length > 0) {
|
|
7104
|
+
writer.writeString(
|
|
7105
|
+
22,
|
|
7106
|
+
f
|
|
7107
|
+
);
|
|
7108
|
+
}
|
|
7085
7109
|
};
|
|
7086
7110
|
|
|
7087
7111
|
|
|
@@ -7482,6 +7506,42 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setMaskedpaymentm
|
|
|
7482
7506
|
};
|
|
7483
7507
|
|
|
7484
7508
|
|
|
7509
|
+
/**
|
|
7510
|
+
* optional string verifyExpiry = 21;
|
|
7511
|
+
* @return {string}
|
|
7512
|
+
*/
|
|
7513
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getVerifyexpiry = function() {
|
|
7514
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 21, ""));
|
|
7515
|
+
};
|
|
7516
|
+
|
|
7517
|
+
|
|
7518
|
+
/**
|
|
7519
|
+
* @param {string} value
|
|
7520
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
7521
|
+
*/
|
|
7522
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setVerifyexpiry = function(value) {
|
|
7523
|
+
return jspb.Message.setProto3StringField(this, 21, value);
|
|
7524
|
+
};
|
|
7525
|
+
|
|
7526
|
+
|
|
7527
|
+
/**
|
|
7528
|
+
* optional string verifiedAt = 22;
|
|
7529
|
+
* @return {string}
|
|
7530
|
+
*/
|
|
7531
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getVerifiedat = function() {
|
|
7532
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 22, ""));
|
|
7533
|
+
};
|
|
7534
|
+
|
|
7535
|
+
|
|
7536
|
+
/**
|
|
7537
|
+
* @param {string} value
|
|
7538
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
7539
|
+
*/
|
|
7540
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setVerifiedat = function(value) {
|
|
7541
|
+
return jspb.Message.setProto3StringField(this, 22, value);
|
|
7542
|
+
};
|
|
7543
|
+
|
|
7544
|
+
|
|
7485
7545
|
|
|
7486
7546
|
|
|
7487
7547
|
|