@sniipwebmaster/payment-methods-client-grpcweb-ts 26.5.8587 → 26.5.8602
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.
|
@@ -674,6 +674,12 @@ export class PaytoBankAccount extends jspb.Message {
|
|
|
674
674
|
getVerifiedat(): string;
|
|
675
675
|
setVerifiedat(value: string): PaytoBankAccount;
|
|
676
676
|
|
|
677
|
+
getDeclinereason(): string;
|
|
678
|
+
setDeclinereason(value: string): PaytoBankAccount;
|
|
679
|
+
|
|
680
|
+
getDeclinecode(): string;
|
|
681
|
+
setDeclinecode(value: string): PaytoBankAccount;
|
|
682
|
+
|
|
677
683
|
serializeBinary(): Uint8Array;
|
|
678
684
|
toObject(includeInstance?: boolean): PaytoBankAccount.AsObject;
|
|
679
685
|
static toObject(includeInstance: boolean, msg: PaytoBankAccount): PaytoBankAccount.AsObject;
|
|
@@ -705,6 +711,8 @@ export namespace PaytoBankAccount {
|
|
|
705
711
|
maskedpaymentmethodnumber: string,
|
|
706
712
|
verifyexpiry: string,
|
|
707
713
|
verifiedat: string,
|
|
714
|
+
declinereason: string,
|
|
715
|
+
declinecode: string,
|
|
708
716
|
}
|
|
709
717
|
|
|
710
718
|
export enum BankaccountstatusCase {
|
|
@@ -7161,7 +7161,9 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.toObject = function(include
|
|
|
7161
7161
|
formattedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
7162
7162
|
maskedpaymentmethodnumber: jspb.Message.getFieldWithDefault(msg, 20, ""),
|
|
7163
7163
|
verifyexpiry: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
7164
|
-
verifiedat: jspb.Message.getFieldWithDefault(msg, 22, "")
|
|
7164
|
+
verifiedat: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
|
7165
|
+
declinereason: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
7166
|
+
declinecode: jspb.Message.getFieldWithDefault(msg, 24, "")
|
|
7165
7167
|
};
|
|
7166
7168
|
|
|
7167
7169
|
if (includeInstance) {
|
|
@@ -7283,6 +7285,14 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.deserializeBinaryFromReader
|
|
|
7283
7285
|
var value = /** @type {string} */ (reader.readString());
|
|
7284
7286
|
msg.setVerifiedat(value);
|
|
7285
7287
|
break;
|
|
7288
|
+
case 23:
|
|
7289
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7290
|
+
msg.setDeclinereason(value);
|
|
7291
|
+
break;
|
|
7292
|
+
case 24:
|
|
7293
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7294
|
+
msg.setDeclinecode(value);
|
|
7295
|
+
break;
|
|
7286
7296
|
default:
|
|
7287
7297
|
reader.skipField();
|
|
7288
7298
|
break;
|
|
@@ -7460,6 +7470,20 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.serializeBinaryToWriter = f
|
|
|
7460
7470
|
f
|
|
7461
7471
|
);
|
|
7462
7472
|
}
|
|
7473
|
+
f = message.getDeclinereason();
|
|
7474
|
+
if (f.length > 0) {
|
|
7475
|
+
writer.writeString(
|
|
7476
|
+
23,
|
|
7477
|
+
f
|
|
7478
|
+
);
|
|
7479
|
+
}
|
|
7480
|
+
f = message.getDeclinecode();
|
|
7481
|
+
if (f.length > 0) {
|
|
7482
|
+
writer.writeString(
|
|
7483
|
+
24,
|
|
7484
|
+
f
|
|
7485
|
+
);
|
|
7486
|
+
}
|
|
7463
7487
|
};
|
|
7464
7488
|
|
|
7465
7489
|
|
|
@@ -7896,6 +7920,42 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setVerifiedat = f
|
|
|
7896
7920
|
};
|
|
7897
7921
|
|
|
7898
7922
|
|
|
7923
|
+
/**
|
|
7924
|
+
* optional string declineReason = 23;
|
|
7925
|
+
* @return {string}
|
|
7926
|
+
*/
|
|
7927
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getDeclinereason = function() {
|
|
7928
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 23, ""));
|
|
7929
|
+
};
|
|
7930
|
+
|
|
7931
|
+
|
|
7932
|
+
/**
|
|
7933
|
+
* @param {string} value
|
|
7934
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
7935
|
+
*/
|
|
7936
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setDeclinereason = function(value) {
|
|
7937
|
+
return jspb.Message.setProto3StringField(this, 23, value);
|
|
7938
|
+
};
|
|
7939
|
+
|
|
7940
|
+
|
|
7941
|
+
/**
|
|
7942
|
+
* optional string declineCode = 24;
|
|
7943
|
+
* @return {string}
|
|
7944
|
+
*/
|
|
7945
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getDeclinecode = function() {
|
|
7946
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 24, ""));
|
|
7947
|
+
};
|
|
7948
|
+
|
|
7949
|
+
|
|
7950
|
+
/**
|
|
7951
|
+
* @param {string} value
|
|
7952
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
7953
|
+
*/
|
|
7954
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setDeclinecode = function(value) {
|
|
7955
|
+
return jspb.Message.setProto3StringField(this, 24, value);
|
|
7956
|
+
};
|
|
7957
|
+
|
|
7958
|
+
|
|
7899
7959
|
|
|
7900
7960
|
|
|
7901
7961
|
|