@sniipwebmaster/payment-methods-client-grpcweb-ts 25.11.7365 → 25.11.7381
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.
|
@@ -637,6 +637,9 @@ export class PaytoBankAccount extends jspb.Message {
|
|
|
637
637
|
getPaytoagreementstatus(): PayToAgreementStatus;
|
|
638
638
|
setPaytoagreementstatus(value: PayToAgreementStatus): PaytoBankAccount;
|
|
639
639
|
|
|
640
|
+
getAliasresolutionlogid(): number;
|
|
641
|
+
setAliasresolutionlogid(value: number): PaytoBankAccount;
|
|
642
|
+
|
|
640
643
|
serializeBinary(): Uint8Array;
|
|
641
644
|
toObject(includeInstance?: boolean): PaytoBankAccount.AsObject;
|
|
642
645
|
static toObject(includeInstance: boolean, msg: PaytoBankAccount): PaytoBankAccount.AsObject;
|
|
@@ -663,6 +666,7 @@ export namespace PaytoBankAccount {
|
|
|
663
666
|
maxamount: number,
|
|
664
667
|
bankaccountvalidationdetailstext?: string,
|
|
665
668
|
paytoagreementstatus: PayToAgreementStatus,
|
|
669
|
+
aliasresolutionlogid: number,
|
|
666
670
|
}
|
|
667
671
|
|
|
668
672
|
export enum BankaccountstatusCase {
|
|
@@ -6742,7 +6742,8 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.toObject = function(include
|
|
|
6742
6742
|
colourscheme: (f = msg.getColourscheme()) && proto.sniippaymentmethodsserviceapi.ColourScheme.toObject(includeInstance, f),
|
|
6743
6743
|
maxamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 15, 0.0),
|
|
6744
6744
|
bankaccountvalidationdetailstext: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
6745
|
-
paytoagreementstatus: jspb.Message.getFieldWithDefault(msg, 17, 0)
|
|
6745
|
+
paytoagreementstatus: jspb.Message.getFieldWithDefault(msg, 17, 0),
|
|
6746
|
+
aliasresolutionlogid: jspb.Message.getFieldWithDefault(msg, 18, 0)
|
|
6746
6747
|
};
|
|
6747
6748
|
|
|
6748
6749
|
if (includeInstance) {
|
|
@@ -6844,6 +6845,10 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.deserializeBinaryFromReader
|
|
|
6844
6845
|
var value = /** @type {!proto.sniippaymentmethodsserviceapi.PayToAgreementStatus} */ (reader.readEnum());
|
|
6845
6846
|
msg.setPaytoagreementstatus(value);
|
|
6846
6847
|
break;
|
|
6848
|
+
case 18:
|
|
6849
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6850
|
+
msg.setAliasresolutionlogid(value);
|
|
6851
|
+
break;
|
|
6847
6852
|
default:
|
|
6848
6853
|
reader.skipField();
|
|
6849
6854
|
break;
|
|
@@ -6986,6 +6991,13 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.serializeBinaryToWriter = f
|
|
|
6986
6991
|
f
|
|
6987
6992
|
);
|
|
6988
6993
|
}
|
|
6994
|
+
f = message.getAliasresolutionlogid();
|
|
6995
|
+
if (f !== 0) {
|
|
6996
|
+
writer.writeInt64(
|
|
6997
|
+
18,
|
|
6998
|
+
f
|
|
6999
|
+
);
|
|
7000
|
+
}
|
|
6989
7001
|
};
|
|
6990
7002
|
|
|
6991
7003
|
|
|
@@ -7332,6 +7344,24 @@ proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setPaytoagreement
|
|
|
7332
7344
|
};
|
|
7333
7345
|
|
|
7334
7346
|
|
|
7347
|
+
/**
|
|
7348
|
+
* optional int64 aliasResolutionLogId = 18;
|
|
7349
|
+
* @return {number}
|
|
7350
|
+
*/
|
|
7351
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.getAliasresolutionlogid = function() {
|
|
7352
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 18, 0));
|
|
7353
|
+
};
|
|
7354
|
+
|
|
7355
|
+
|
|
7356
|
+
/**
|
|
7357
|
+
* @param {number} value
|
|
7358
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaytoBankAccount} returns this
|
|
7359
|
+
*/
|
|
7360
|
+
proto.sniippaymentmethodsserviceapi.PaytoBankAccount.prototype.setAliasresolutionlogid = function(value) {
|
|
7361
|
+
return jspb.Message.setProto3IntField(this, 18, value);
|
|
7362
|
+
};
|
|
7363
|
+
|
|
7364
|
+
|
|
7335
7365
|
|
|
7336
7366
|
|
|
7337
7367
|
|