@sniipwebmaster/payment-methods-client-grpcweb-ts 26.5.8602 → 26.5.8627
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.
|
@@ -680,6 +680,12 @@ export class PaytoBankAccount extends jspb.Message {
|
|
|
680
680
|
getDeclinecode(): string;
|
|
681
681
|
setDeclinecode(value: string): PaytoBankAccount;
|
|
682
682
|
|
|
683
|
+
getDeclinetitle(): string;
|
|
684
|
+
setDeclinetitle(value: string): PaytoBankAccount;
|
|
685
|
+
|
|
686
|
+
getDeclinedetail(): string;
|
|
687
|
+
setDeclinedetail(value: string): PaytoBankAccount;
|
|
688
|
+
|
|
683
689
|
serializeBinary(): Uint8Array;
|
|
684
690
|
toObject(includeInstance?: boolean): PaytoBankAccount.AsObject;
|
|
685
691
|
static toObject(includeInstance: boolean, msg: PaytoBankAccount): PaytoBankAccount.AsObject;
|
|
@@ -713,6 +719,8 @@ export namespace PaytoBankAccount {
|
|
|
713
719
|
verifiedat: string,
|
|
714
720
|
declinereason: string,
|
|
715
721
|
declinecode: string,
|
|
722
|
+
declinetitle: string,
|
|
723
|
+
declinedetail: string,
|
|
716
724
|
}
|
|
717
725
|
|
|
718
726
|
export enum BankaccountstatusCase {
|
|
@@ -4110,6 +4118,7 @@ export enum PayToAgreementStatus {
|
|
|
4110
4118
|
PAYTO_AGREEMENT_STATUS_PENDING_AMENDMENT = 6,
|
|
4111
4119
|
PAYTO_AGREEMENT_STATUS_AMENDMENT_DECLINED = 7,
|
|
4112
4120
|
PAYTO_AGREEMENT_STATUS_AMENDMENT_EXPIRED = 8,
|
|
4121
|
+
PAYTO_AGREEMENT_STATUS_PAYTO_UNSUPPORTED = 9,
|
|
4113
4122
|
}
|
|
4114
4123
|
export enum PaymentProcessor {
|
|
4115
4124
|
BPAY = 0,
|
|
@@ -7163,7 +7163,9 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.toObject = function(include
|
|
|
7163
7163
|
verifyexpiry: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
|
7164
7164
|
verifiedat: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
|
7165
7165
|
declinereason: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
7166
|
-
declinecode: jspb.Message.getFieldWithDefault(msg, 24, "")
|
|
7166
|
+
declinecode: jspb.Message.getFieldWithDefault(msg, 24, ""),
|
|
7167
|
+
declinetitle: jspb.Message.getFieldWithDefault(msg, 25, ""),
|
|
7168
|
+
declinedetail: jspb.Message.getFieldWithDefault(msg, 26, "")
|
|
7167
7169
|
};
|
|
7168
7170
|
|
|
7169
7171
|
if (includeInstance) {
|
|
@@ -7293,6 +7295,14 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.deserializeBinaryFromReader
|
|
|
7293
7295
|
var value = /** @type {string} */ (reader.readString());
|
|
7294
7296
|
msg.setDeclinecode(value);
|
|
7295
7297
|
break;
|
|
7298
|
+
case 25:
|
|
7299
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7300
|
+
msg.setDeclinetitle(value);
|
|
7301
|
+
break;
|
|
7302
|
+
case 26:
|
|
7303
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7304
|
+
msg.setDeclinedetail(value);
|
|
7305
|
+
break;
|
|
7296
7306
|
default:
|
|
7297
7307
|
reader.skipField();
|
|
7298
7308
|
break;
|
|
@@ -7484,6 +7494,20 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.serializeBinaryToWriter = f
|
|
|
7484
7494
|
f
|
|
7485
7495
|
);
|
|
7486
7496
|
}
|
|
7497
|
+
f = message.getDeclinetitle();
|
|
7498
|
+
if (f.length > 0) {
|
|
7499
|
+
writer.writeString(
|
|
7500
|
+
25,
|
|
7501
|
+
f
|
|
7502
|
+
);
|
|
7503
|
+
}
|
|
7504
|
+
f = message.getDeclinedetail();
|
|
7505
|
+
if (f.length > 0) {
|
|
7506
|
+
writer.writeString(
|
|
7507
|
+
26,
|
|
7508
|
+
f
|
|
7509
|
+
);
|
|
7510
|
+
}
|
|
7487
7511
|
};
|
|
7488
7512
|
|
|
7489
7513
|
|
|
@@ -7956,6 +7980,42 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setDeclinecode =
|
|
|
7956
7980
|
};
|
|
7957
7981
|
|
|
7958
7982
|
|
|
7983
|
+
/**
|
|
7984
|
+
* optional string declineTitle = 25;
|
|
7985
|
+
* @return {string}
|
|
7986
|
+
*/
|
|
7987
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getDeclinetitle = function() {
|
|
7988
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 25, ""));
|
|
7989
|
+
};
|
|
7990
|
+
|
|
7991
|
+
|
|
7992
|
+
/**
|
|
7993
|
+
* @param {string} value
|
|
7994
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
7995
|
+
*/
|
|
7996
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setDeclinetitle = function(value) {
|
|
7997
|
+
return jspb.Message.setProto3StringField(this, 25, value);
|
|
7998
|
+
};
|
|
7999
|
+
|
|
8000
|
+
|
|
8001
|
+
/**
|
|
8002
|
+
* optional string declineDetail = 26;
|
|
8003
|
+
* @return {string}
|
|
8004
|
+
*/
|
|
8005
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getDeclinedetail = function() {
|
|
8006
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 26, ""));
|
|
8007
|
+
};
|
|
8008
|
+
|
|
8009
|
+
|
|
8010
|
+
/**
|
|
8011
|
+
* @param {string} value
|
|
8012
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
8013
|
+
*/
|
|
8014
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setDeclinedetail = function(value) {
|
|
8015
|
+
return jspb.Message.setProto3StringField(this, 26, value);
|
|
8016
|
+
};
|
|
8017
|
+
|
|
8018
|
+
|
|
7959
8019
|
|
|
7960
8020
|
|
|
7961
8021
|
|
|
@@ -32993,7 +33053,8 @@ proto.sniippaymentmethodsserviceapi.PayToAgreementStatus = {
|
|
|
32993
33053
|
PAYTO_AGREEMENT_STATUS_PENDING: 5,
|
|
32994
33054
|
PAYTO_AGREEMENT_STATUS_PENDING_AMENDMENT: 6,
|
|
32995
33055
|
PAYTO_AGREEMENT_STATUS_AMENDMENT_DECLINED: 7,
|
|
32996
|
-
PAYTO_AGREEMENT_STATUS_AMENDMENT_EXPIRED: 8
|
|
33056
|
+
PAYTO_AGREEMENT_STATUS_AMENDMENT_EXPIRED: 8,
|
|
33057
|
+
PAYTO_AGREEMENT_STATUS_PAYTO_UNSUPPORTED: 9
|
|
32997
33058
|
};
|
|
32998
33059
|
|
|
32999
33060
|
/**
|