@sniipwebmaster/payment-methods-client-grpcweb 24.16.6053 → 24.16.6069
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
|
@@ -5584,7 +5584,8 @@ proto.sniippaymentmethodsserviceapi.BankAccount.toObject = function(includeInsta
|
|
|
5584
5584
|
bankname: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
5585
5585
|
colourscheme: (f = msg.getColourscheme()) && proto.sniippaymentmethodsserviceapi.ColourScheme.toObject(includeInstance, f),
|
|
5586
5586
|
isverifyexpired: jspb.Message.getBooleanFieldWithDefault(msg, 10, false),
|
|
5587
|
-
contactid: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
5587
|
+
contactid: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
5588
|
+
isdeleted: jspb.Message.getBooleanFieldWithDefault(msg, 12, false)
|
|
5588
5589
|
};
|
|
5589
5590
|
|
|
5590
5591
|
if (includeInstance) {
|
|
@@ -5662,6 +5663,10 @@ proto.sniippaymentmethodsserviceapi.BankAccount.deserializeBinaryFromReader = fu
|
|
|
5662
5663
|
var value = /** @type {string} */ (reader.readString());
|
|
5663
5664
|
msg.setContactid(value);
|
|
5664
5665
|
break;
|
|
5666
|
+
case 12:
|
|
5667
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
5668
|
+
msg.setIsdeleted(value);
|
|
5669
|
+
break;
|
|
5665
5670
|
default:
|
|
5666
5671
|
reader.skipField();
|
|
5667
5672
|
break;
|
|
@@ -5762,6 +5767,13 @@ proto.sniippaymentmethodsserviceapi.BankAccount.serializeBinaryToWriter = functi
|
|
|
5762
5767
|
f
|
|
5763
5768
|
);
|
|
5764
5769
|
}
|
|
5770
|
+
f = message.getIsdeleted();
|
|
5771
|
+
if (f) {
|
|
5772
|
+
writer.writeBool(
|
|
5773
|
+
12,
|
|
5774
|
+
f
|
|
5775
|
+
);
|
|
5776
|
+
}
|
|
5765
5777
|
};
|
|
5766
5778
|
|
|
5767
5779
|
|
|
@@ -5964,6 +5976,24 @@ proto.sniippaymentmethodsserviceapi.BankAccount.prototype.setContactid = functio
|
|
|
5964
5976
|
};
|
|
5965
5977
|
|
|
5966
5978
|
|
|
5979
|
+
/**
|
|
5980
|
+
* optional bool isDeleted = 12;
|
|
5981
|
+
* @return {boolean}
|
|
5982
|
+
*/
|
|
5983
|
+
proto.sniippaymentmethodsserviceapi.BankAccount.prototype.getIsdeleted = function() {
|
|
5984
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 12, false));
|
|
5985
|
+
};
|
|
5986
|
+
|
|
5987
|
+
|
|
5988
|
+
/**
|
|
5989
|
+
* @param {boolean} value
|
|
5990
|
+
* @return {!proto.sniippaymentmethodsserviceapi.BankAccount} returns this
|
|
5991
|
+
*/
|
|
5992
|
+
proto.sniippaymentmethodsserviceapi.BankAccount.prototype.setIsdeleted = function(value) {
|
|
5993
|
+
return jspb.Message.setProto3BooleanField(this, 12, value);
|
|
5994
|
+
};
|
|
5995
|
+
|
|
5996
|
+
|
|
5967
5997
|
|
|
5968
5998
|
|
|
5969
5999
|
|