@sniipwebmaster/biller-service-client-grpcweb 0.2.2748 → 0.2.2777
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 +55 -1
- package/package.json +1 -1
|
@@ -17725,7 +17725,9 @@ proto.sniipbillerapi.Organisation.toObject = function(includeInstance, msg) {
|
|
|
17725
17725
|
maxamountpermitted: msg.getMaxamountpermitted(),
|
|
17726
17726
|
minamountpermitted: msg.getMinamountpermitted(),
|
|
17727
17727
|
acceptedpaymentmethodsList: jspb.Message.getField(msg, 7),
|
|
17728
|
-
userhasvalidpaymentmethods: msg.getUserhasvalidpaymentmethods()
|
|
17728
|
+
userhasvalidpaymentmethods: msg.getUserhasvalidpaymentmethods(),
|
|
17729
|
+
billertimezone: msg.getBillertimezone(),
|
|
17730
|
+
billertimezoneabbr: msg.getBillertimezoneabbr()
|
|
17729
17731
|
};
|
|
17730
17732
|
|
|
17731
17733
|
if (includeInstance) {
|
|
@@ -17795,6 +17797,14 @@ proto.sniipbillerapi.Organisation.deserializeBinaryFromReader = function(msg, re
|
|
|
17795
17797
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
17796
17798
|
msg.setUserhasvalidpaymentmethods(value);
|
|
17797
17799
|
break;
|
|
17800
|
+
case 9:
|
|
17801
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17802
|
+
msg.setBillertimezone(value);
|
|
17803
|
+
break;
|
|
17804
|
+
case 10:
|
|
17805
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17806
|
+
msg.setBillertimezoneabbr(value);
|
|
17807
|
+
break;
|
|
17798
17808
|
default:
|
|
17799
17809
|
reader.skipField();
|
|
17800
17810
|
break;
|
|
@@ -17889,6 +17899,20 @@ proto.sniipbillerapi.Organisation.prototype.serializeBinaryToWriter = function (
|
|
|
17889
17899
|
f
|
|
17890
17900
|
);
|
|
17891
17901
|
}
|
|
17902
|
+
f = this.getBillertimezone();
|
|
17903
|
+
if (f.length > 0) {
|
|
17904
|
+
writer.writeString(
|
|
17905
|
+
9,
|
|
17906
|
+
f
|
|
17907
|
+
);
|
|
17908
|
+
}
|
|
17909
|
+
f = this.getBillertimezoneabbr();
|
|
17910
|
+
if (f.length > 0) {
|
|
17911
|
+
writer.writeString(
|
|
17912
|
+
10,
|
|
17913
|
+
f
|
|
17914
|
+
);
|
|
17915
|
+
}
|
|
17892
17916
|
};
|
|
17893
17917
|
|
|
17894
17918
|
|
|
@@ -18030,6 +18054,36 @@ proto.sniipbillerapi.Organisation.prototype.setUserhasvalidpaymentmethods = func
|
|
|
18030
18054
|
};
|
|
18031
18055
|
|
|
18032
18056
|
|
|
18057
|
+
/**
|
|
18058
|
+
* optional string billerTimezone = 9;
|
|
18059
|
+
* @return {string}
|
|
18060
|
+
*/
|
|
18061
|
+
proto.sniipbillerapi.Organisation.prototype.getBillertimezone = function() {
|
|
18062
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 9, ""));
|
|
18063
|
+
};
|
|
18064
|
+
|
|
18065
|
+
|
|
18066
|
+
/** @param {string} value */
|
|
18067
|
+
proto.sniipbillerapi.Organisation.prototype.setBillertimezone = function(value) {
|
|
18068
|
+
jspb.Message.setField(this, 9, value);
|
|
18069
|
+
};
|
|
18070
|
+
|
|
18071
|
+
|
|
18072
|
+
/**
|
|
18073
|
+
* optional string billerTimezoneAbbr = 10;
|
|
18074
|
+
* @return {string}
|
|
18075
|
+
*/
|
|
18076
|
+
proto.sniipbillerapi.Organisation.prototype.getBillertimezoneabbr = function() {
|
|
18077
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 10, ""));
|
|
18078
|
+
};
|
|
18079
|
+
|
|
18080
|
+
|
|
18081
|
+
/** @param {string} value */
|
|
18082
|
+
proto.sniipbillerapi.Organisation.prototype.setBillertimezoneabbr = function(value) {
|
|
18083
|
+
jspb.Message.setField(this, 10, value);
|
|
18084
|
+
};
|
|
18085
|
+
|
|
18086
|
+
|
|
18033
18087
|
|
|
18034
18088
|
/**
|
|
18035
18089
|
* Generated by JsPbCodeGenerator.
|