@sniipwebmaster/payroll-service-client-grpcweb 25.7.83 → 25.7.93
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 +51 -231
- package/package.json +1 -1
|
@@ -7917,11 +7917,9 @@ proto.payrollserviceapi.BusinessSummary.toObject = function(includeInstance, msg
|
|
|
7917
7917
|
businessId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
7918
7918
|
name: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
7919
7919
|
abn: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
7920
|
-
|
|
7921
|
-
|
|
7922
|
-
|
|
7923
|
-
createdAt: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
7924
|
-
updatedAt: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
7920
|
+
isActive: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
7921
|
+
createdAt: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
7922
|
+
updatedAt: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
7925
7923
|
};
|
|
7926
7924
|
|
|
7927
7925
|
if (includeInstance) {
|
|
@@ -7971,22 +7969,14 @@ proto.payrollserviceapi.BusinessSummary.deserializeBinaryFromReader = function(m
|
|
|
7971
7969
|
msg.setAbn(value);
|
|
7972
7970
|
break;
|
|
7973
7971
|
case 4:
|
|
7974
|
-
var value = /** @type {string} */ (reader.readString());
|
|
7975
|
-
msg.setBsb(value);
|
|
7976
|
-
break;
|
|
7977
|
-
case 5:
|
|
7978
|
-
var value = /** @type {string} */ (reader.readString());
|
|
7979
|
-
msg.setAccountNumber(value);
|
|
7980
|
-
break;
|
|
7981
|
-
case 6:
|
|
7982
7972
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
7983
7973
|
msg.setIsActive(value);
|
|
7984
7974
|
break;
|
|
7985
|
-
case
|
|
7975
|
+
case 5:
|
|
7986
7976
|
var value = /** @type {string} */ (reader.readString());
|
|
7987
7977
|
msg.setCreatedAt(value);
|
|
7988
7978
|
break;
|
|
7989
|
-
case
|
|
7979
|
+
case 6:
|
|
7990
7980
|
var value = /** @type {string} */ (reader.readString());
|
|
7991
7981
|
msg.setUpdatedAt(value);
|
|
7992
7982
|
break;
|
|
@@ -8040,38 +8030,24 @@ proto.payrollserviceapi.BusinessSummary.serializeBinaryToWriter = function(messa
|
|
|
8040
8030
|
f
|
|
8041
8031
|
);
|
|
8042
8032
|
}
|
|
8043
|
-
f = message.getBsb();
|
|
8044
|
-
if (f.length > 0) {
|
|
8045
|
-
writer.writeString(
|
|
8046
|
-
4,
|
|
8047
|
-
f
|
|
8048
|
-
);
|
|
8049
|
-
}
|
|
8050
|
-
f = message.getAccountNumber();
|
|
8051
|
-
if (f.length > 0) {
|
|
8052
|
-
writer.writeString(
|
|
8053
|
-
5,
|
|
8054
|
-
f
|
|
8055
|
-
);
|
|
8056
|
-
}
|
|
8057
8033
|
f = message.getIsActive();
|
|
8058
8034
|
if (f) {
|
|
8059
8035
|
writer.writeBool(
|
|
8060
|
-
|
|
8036
|
+
4,
|
|
8061
8037
|
f
|
|
8062
8038
|
);
|
|
8063
8039
|
}
|
|
8064
8040
|
f = message.getCreatedAt();
|
|
8065
8041
|
if (f.length > 0) {
|
|
8066
8042
|
writer.writeString(
|
|
8067
|
-
|
|
8043
|
+
5,
|
|
8068
8044
|
f
|
|
8069
8045
|
);
|
|
8070
8046
|
}
|
|
8071
8047
|
f = message.getUpdatedAt();
|
|
8072
8048
|
if (f.length > 0) {
|
|
8073
8049
|
writer.writeString(
|
|
8074
|
-
|
|
8050
|
+
6,
|
|
8075
8051
|
f
|
|
8076
8052
|
);
|
|
8077
8053
|
}
|
|
@@ -8133,47 +8109,11 @@ proto.payrollserviceapi.BusinessSummary.prototype.setAbn = function(value) {
|
|
|
8133
8109
|
|
|
8134
8110
|
|
|
8135
8111
|
/**
|
|
8136
|
-
* optional
|
|
8137
|
-
* @return {string}
|
|
8138
|
-
*/
|
|
8139
|
-
proto.payrollserviceapi.BusinessSummary.prototype.getBsb = function() {
|
|
8140
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
8141
|
-
};
|
|
8142
|
-
|
|
8143
|
-
|
|
8144
|
-
/**
|
|
8145
|
-
* @param {string} value
|
|
8146
|
-
* @return {!proto.payrollserviceapi.BusinessSummary} returns this
|
|
8147
|
-
*/
|
|
8148
|
-
proto.payrollserviceapi.BusinessSummary.prototype.setBsb = function(value) {
|
|
8149
|
-
return jspb.Message.setProto3StringField(this, 4, value);
|
|
8150
|
-
};
|
|
8151
|
-
|
|
8152
|
-
|
|
8153
|
-
/**
|
|
8154
|
-
* optional string account_number = 5;
|
|
8155
|
-
* @return {string}
|
|
8156
|
-
*/
|
|
8157
|
-
proto.payrollserviceapi.BusinessSummary.prototype.getAccountNumber = function() {
|
|
8158
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
8159
|
-
};
|
|
8160
|
-
|
|
8161
|
-
|
|
8162
|
-
/**
|
|
8163
|
-
* @param {string} value
|
|
8164
|
-
* @return {!proto.payrollserviceapi.BusinessSummary} returns this
|
|
8165
|
-
*/
|
|
8166
|
-
proto.payrollserviceapi.BusinessSummary.prototype.setAccountNumber = function(value) {
|
|
8167
|
-
return jspb.Message.setProto3StringField(this, 5, value);
|
|
8168
|
-
};
|
|
8169
|
-
|
|
8170
|
-
|
|
8171
|
-
/**
|
|
8172
|
-
* optional bool is_active = 6;
|
|
8112
|
+
* optional bool is_active = 4;
|
|
8173
8113
|
* @return {boolean}
|
|
8174
8114
|
*/
|
|
8175
8115
|
proto.payrollserviceapi.BusinessSummary.prototype.getIsActive = function() {
|
|
8176
|
-
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this,
|
|
8116
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 4, false));
|
|
8177
8117
|
};
|
|
8178
8118
|
|
|
8179
8119
|
|
|
@@ -8182,16 +8122,16 @@ proto.payrollserviceapi.BusinessSummary.prototype.getIsActive = function() {
|
|
|
8182
8122
|
* @return {!proto.payrollserviceapi.BusinessSummary} returns this
|
|
8183
8123
|
*/
|
|
8184
8124
|
proto.payrollserviceapi.BusinessSummary.prototype.setIsActive = function(value) {
|
|
8185
|
-
return jspb.Message.setProto3BooleanField(this,
|
|
8125
|
+
return jspb.Message.setProto3BooleanField(this, 4, value);
|
|
8186
8126
|
};
|
|
8187
8127
|
|
|
8188
8128
|
|
|
8189
8129
|
/**
|
|
8190
|
-
* optional string created_at =
|
|
8130
|
+
* optional string created_at = 5;
|
|
8191
8131
|
* @return {string}
|
|
8192
8132
|
*/
|
|
8193
8133
|
proto.payrollserviceapi.BusinessSummary.prototype.getCreatedAt = function() {
|
|
8194
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
8134
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
8195
8135
|
};
|
|
8196
8136
|
|
|
8197
8137
|
|
|
@@ -8200,16 +8140,16 @@ proto.payrollserviceapi.BusinessSummary.prototype.getCreatedAt = function() {
|
|
|
8200
8140
|
* @return {!proto.payrollserviceapi.BusinessSummary} returns this
|
|
8201
8141
|
*/
|
|
8202
8142
|
proto.payrollserviceapi.BusinessSummary.prototype.setCreatedAt = function(value) {
|
|
8203
|
-
return jspb.Message.setProto3StringField(this,
|
|
8143
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
8204
8144
|
};
|
|
8205
8145
|
|
|
8206
8146
|
|
|
8207
8147
|
/**
|
|
8208
|
-
* optional string updated_at =
|
|
8148
|
+
* optional string updated_at = 6;
|
|
8209
8149
|
* @return {string}
|
|
8210
8150
|
*/
|
|
8211
8151
|
proto.payrollserviceapi.BusinessSummary.prototype.getUpdatedAt = function() {
|
|
8212
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
8152
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
8213
8153
|
};
|
|
8214
8154
|
|
|
8215
8155
|
|
|
@@ -8218,7 +8158,7 @@ proto.payrollserviceapi.BusinessSummary.prototype.getUpdatedAt = function() {
|
|
|
8218
8158
|
* @return {!proto.payrollserviceapi.BusinessSummary} returns this
|
|
8219
8159
|
*/
|
|
8220
8160
|
proto.payrollserviceapi.BusinessSummary.prototype.setUpdatedAt = function(value) {
|
|
8221
|
-
return jspb.Message.setProto3StringField(this,
|
|
8161
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
8222
8162
|
};
|
|
8223
8163
|
|
|
8224
8164
|
|
|
@@ -8649,11 +8589,9 @@ proto.payrollserviceapi.BusinessDetails.toObject = function(includeInstance, msg
|
|
|
8649
8589
|
businessId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
8650
8590
|
name: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
8651
8591
|
abn: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
8652
|
-
|
|
8653
|
-
|
|
8654
|
-
|
|
8655
|
-
createdAt: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
8656
|
-
updatedAt: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
8592
|
+
isActive: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
8593
|
+
createdAt: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
8594
|
+
updatedAt: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
8657
8595
|
};
|
|
8658
8596
|
|
|
8659
8597
|
if (includeInstance) {
|
|
@@ -8703,22 +8641,14 @@ proto.payrollserviceapi.BusinessDetails.deserializeBinaryFromReader = function(m
|
|
|
8703
8641
|
msg.setAbn(value);
|
|
8704
8642
|
break;
|
|
8705
8643
|
case 4:
|
|
8706
|
-
var value = /** @type {string} */ (reader.readString());
|
|
8707
|
-
msg.setBsb(value);
|
|
8708
|
-
break;
|
|
8709
|
-
case 5:
|
|
8710
|
-
var value = /** @type {string} */ (reader.readString());
|
|
8711
|
-
msg.setAccountNumber(value);
|
|
8712
|
-
break;
|
|
8713
|
-
case 6:
|
|
8714
8644
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
8715
8645
|
msg.setIsActive(value);
|
|
8716
8646
|
break;
|
|
8717
|
-
case
|
|
8647
|
+
case 5:
|
|
8718
8648
|
var value = /** @type {string} */ (reader.readString());
|
|
8719
8649
|
msg.setCreatedAt(value);
|
|
8720
8650
|
break;
|
|
8721
|
-
case
|
|
8651
|
+
case 6:
|
|
8722
8652
|
var value = /** @type {string} */ (reader.readString());
|
|
8723
8653
|
msg.setUpdatedAt(value);
|
|
8724
8654
|
break;
|
|
@@ -8772,38 +8702,24 @@ proto.payrollserviceapi.BusinessDetails.serializeBinaryToWriter = function(messa
|
|
|
8772
8702
|
f
|
|
8773
8703
|
);
|
|
8774
8704
|
}
|
|
8775
|
-
f = message.getBsb();
|
|
8776
|
-
if (f.length > 0) {
|
|
8777
|
-
writer.writeString(
|
|
8778
|
-
4,
|
|
8779
|
-
f
|
|
8780
|
-
);
|
|
8781
|
-
}
|
|
8782
|
-
f = message.getAccountNumber();
|
|
8783
|
-
if (f.length > 0) {
|
|
8784
|
-
writer.writeString(
|
|
8785
|
-
5,
|
|
8786
|
-
f
|
|
8787
|
-
);
|
|
8788
|
-
}
|
|
8789
8705
|
f = message.getIsActive();
|
|
8790
8706
|
if (f) {
|
|
8791
8707
|
writer.writeBool(
|
|
8792
|
-
|
|
8708
|
+
4,
|
|
8793
8709
|
f
|
|
8794
8710
|
);
|
|
8795
8711
|
}
|
|
8796
8712
|
f = message.getCreatedAt();
|
|
8797
8713
|
if (f.length > 0) {
|
|
8798
8714
|
writer.writeString(
|
|
8799
|
-
|
|
8715
|
+
5,
|
|
8800
8716
|
f
|
|
8801
8717
|
);
|
|
8802
8718
|
}
|
|
8803
8719
|
f = message.getUpdatedAt();
|
|
8804
8720
|
if (f.length > 0) {
|
|
8805
8721
|
writer.writeString(
|
|
8806
|
-
|
|
8722
|
+
6,
|
|
8807
8723
|
f
|
|
8808
8724
|
);
|
|
8809
8725
|
}
|
|
@@ -8865,47 +8781,11 @@ proto.payrollserviceapi.BusinessDetails.prototype.setAbn = function(value) {
|
|
|
8865
8781
|
|
|
8866
8782
|
|
|
8867
8783
|
/**
|
|
8868
|
-
* optional
|
|
8869
|
-
* @return {string}
|
|
8870
|
-
*/
|
|
8871
|
-
proto.payrollserviceapi.BusinessDetails.prototype.getBsb = function() {
|
|
8872
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
8873
|
-
};
|
|
8874
|
-
|
|
8875
|
-
|
|
8876
|
-
/**
|
|
8877
|
-
* @param {string} value
|
|
8878
|
-
* @return {!proto.payrollserviceapi.BusinessDetails} returns this
|
|
8879
|
-
*/
|
|
8880
|
-
proto.payrollserviceapi.BusinessDetails.prototype.setBsb = function(value) {
|
|
8881
|
-
return jspb.Message.setProto3StringField(this, 4, value);
|
|
8882
|
-
};
|
|
8883
|
-
|
|
8884
|
-
|
|
8885
|
-
/**
|
|
8886
|
-
* optional string account_number = 5;
|
|
8887
|
-
* @return {string}
|
|
8888
|
-
*/
|
|
8889
|
-
proto.payrollserviceapi.BusinessDetails.prototype.getAccountNumber = function() {
|
|
8890
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
8891
|
-
};
|
|
8892
|
-
|
|
8893
|
-
|
|
8894
|
-
/**
|
|
8895
|
-
* @param {string} value
|
|
8896
|
-
* @return {!proto.payrollserviceapi.BusinessDetails} returns this
|
|
8897
|
-
*/
|
|
8898
|
-
proto.payrollserviceapi.BusinessDetails.prototype.setAccountNumber = function(value) {
|
|
8899
|
-
return jspb.Message.setProto3StringField(this, 5, value);
|
|
8900
|
-
};
|
|
8901
|
-
|
|
8902
|
-
|
|
8903
|
-
/**
|
|
8904
|
-
* optional bool is_active = 6;
|
|
8784
|
+
* optional bool is_active = 4;
|
|
8905
8785
|
* @return {boolean}
|
|
8906
8786
|
*/
|
|
8907
8787
|
proto.payrollserviceapi.BusinessDetails.prototype.getIsActive = function() {
|
|
8908
|
-
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this,
|
|
8788
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 4, false));
|
|
8909
8789
|
};
|
|
8910
8790
|
|
|
8911
8791
|
|
|
@@ -8914,16 +8794,16 @@ proto.payrollserviceapi.BusinessDetails.prototype.getIsActive = function() {
|
|
|
8914
8794
|
* @return {!proto.payrollserviceapi.BusinessDetails} returns this
|
|
8915
8795
|
*/
|
|
8916
8796
|
proto.payrollserviceapi.BusinessDetails.prototype.setIsActive = function(value) {
|
|
8917
|
-
return jspb.Message.setProto3BooleanField(this,
|
|
8797
|
+
return jspb.Message.setProto3BooleanField(this, 4, value);
|
|
8918
8798
|
};
|
|
8919
8799
|
|
|
8920
8800
|
|
|
8921
8801
|
/**
|
|
8922
|
-
* optional string created_at =
|
|
8802
|
+
* optional string created_at = 5;
|
|
8923
8803
|
* @return {string}
|
|
8924
8804
|
*/
|
|
8925
8805
|
proto.payrollserviceapi.BusinessDetails.prototype.getCreatedAt = function() {
|
|
8926
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
8806
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
8927
8807
|
};
|
|
8928
8808
|
|
|
8929
8809
|
|
|
@@ -8932,16 +8812,16 @@ proto.payrollserviceapi.BusinessDetails.prototype.getCreatedAt = function() {
|
|
|
8932
8812
|
* @return {!proto.payrollserviceapi.BusinessDetails} returns this
|
|
8933
8813
|
*/
|
|
8934
8814
|
proto.payrollserviceapi.BusinessDetails.prototype.setCreatedAt = function(value) {
|
|
8935
|
-
return jspb.Message.setProto3StringField(this,
|
|
8815
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
8936
8816
|
};
|
|
8937
8817
|
|
|
8938
8818
|
|
|
8939
8819
|
/**
|
|
8940
|
-
* optional string updated_at =
|
|
8820
|
+
* optional string updated_at = 6;
|
|
8941
8821
|
* @return {string}
|
|
8942
8822
|
*/
|
|
8943
8823
|
proto.payrollserviceapi.BusinessDetails.prototype.getUpdatedAt = function() {
|
|
8944
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
8824
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
8945
8825
|
};
|
|
8946
8826
|
|
|
8947
8827
|
|
|
@@ -8950,7 +8830,7 @@ proto.payrollserviceapi.BusinessDetails.prototype.getUpdatedAt = function() {
|
|
|
8950
8830
|
* @return {!proto.payrollserviceapi.BusinessDetails} returns this
|
|
8951
8831
|
*/
|
|
8952
8832
|
proto.payrollserviceapi.BusinessDetails.prototype.setUpdatedAt = function(value) {
|
|
8953
|
-
return jspb.Message.setProto3StringField(this,
|
|
8833
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
8954
8834
|
};
|
|
8955
8835
|
|
|
8956
8836
|
|
|
@@ -8989,11 +8869,9 @@ proto.payrollserviceapi.UpdateBusinessRequest.toObject = function(includeInstanc
|
|
|
8989
8869
|
businessId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
8990
8870
|
name: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
8991
8871
|
abn: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
8992
|
-
|
|
8993
|
-
|
|
8994
|
-
|
|
8995
|
-
agentUserId: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
8996
|
-
clientUserId: jspb.Message.getFieldWithDefault(msg, 8, 0)
|
|
8872
|
+
isActive: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
8873
|
+
agentUserId: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
8874
|
+
clientUserId: jspb.Message.getFieldWithDefault(msg, 6, 0)
|
|
8997
8875
|
};
|
|
8998
8876
|
|
|
8999
8877
|
if (includeInstance) {
|
|
@@ -9043,22 +8921,14 @@ proto.payrollserviceapi.UpdateBusinessRequest.deserializeBinaryFromReader = func
|
|
|
9043
8921
|
msg.setAbn(value);
|
|
9044
8922
|
break;
|
|
9045
8923
|
case 4:
|
|
9046
|
-
var value = /** @type {string} */ (reader.readString());
|
|
9047
|
-
msg.setBsb(value);
|
|
9048
|
-
break;
|
|
9049
|
-
case 5:
|
|
9050
|
-
var value = /** @type {string} */ (reader.readString());
|
|
9051
|
-
msg.setAccountNumber(value);
|
|
9052
|
-
break;
|
|
9053
|
-
case 6:
|
|
9054
8924
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
9055
8925
|
msg.setIsActive(value);
|
|
9056
8926
|
break;
|
|
9057
|
-
case
|
|
8927
|
+
case 5:
|
|
9058
8928
|
var value = /** @type {number} */ (reader.readInt64());
|
|
9059
8929
|
msg.setAgentUserId(value);
|
|
9060
8930
|
break;
|
|
9061
|
-
case
|
|
8931
|
+
case 6:
|
|
9062
8932
|
var value = /** @type {number} */ (reader.readInt64());
|
|
9063
8933
|
msg.setClientUserId(value);
|
|
9064
8934
|
break;
|
|
@@ -9112,38 +8982,24 @@ proto.payrollserviceapi.UpdateBusinessRequest.serializeBinaryToWriter = function
|
|
|
9112
8982
|
f
|
|
9113
8983
|
);
|
|
9114
8984
|
}
|
|
9115
|
-
f = message.getBsb();
|
|
9116
|
-
if (f.length > 0) {
|
|
9117
|
-
writer.writeString(
|
|
9118
|
-
4,
|
|
9119
|
-
f
|
|
9120
|
-
);
|
|
9121
|
-
}
|
|
9122
|
-
f = message.getAccountNumber();
|
|
9123
|
-
if (f.length > 0) {
|
|
9124
|
-
writer.writeString(
|
|
9125
|
-
5,
|
|
9126
|
-
f
|
|
9127
|
-
);
|
|
9128
|
-
}
|
|
9129
8985
|
f = message.getIsActive();
|
|
9130
8986
|
if (f) {
|
|
9131
8987
|
writer.writeBool(
|
|
9132
|
-
|
|
8988
|
+
4,
|
|
9133
8989
|
f
|
|
9134
8990
|
);
|
|
9135
8991
|
}
|
|
9136
8992
|
f = message.getAgentUserId();
|
|
9137
8993
|
if (f !== 0) {
|
|
9138
8994
|
writer.writeInt64(
|
|
9139
|
-
|
|
8995
|
+
5,
|
|
9140
8996
|
f
|
|
9141
8997
|
);
|
|
9142
8998
|
}
|
|
9143
8999
|
f = message.getClientUserId();
|
|
9144
9000
|
if (f !== 0) {
|
|
9145
9001
|
writer.writeInt64(
|
|
9146
|
-
|
|
9002
|
+
6,
|
|
9147
9003
|
f
|
|
9148
9004
|
);
|
|
9149
9005
|
}
|
|
@@ -9205,47 +9061,11 @@ proto.payrollserviceapi.UpdateBusinessRequest.prototype.setAbn = function(value)
|
|
|
9205
9061
|
|
|
9206
9062
|
|
|
9207
9063
|
/**
|
|
9208
|
-
* optional
|
|
9209
|
-
* @return {string}
|
|
9210
|
-
*/
|
|
9211
|
-
proto.payrollserviceapi.UpdateBusinessRequest.prototype.getBsb = function() {
|
|
9212
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
9213
|
-
};
|
|
9214
|
-
|
|
9215
|
-
|
|
9216
|
-
/**
|
|
9217
|
-
* @param {string} value
|
|
9218
|
-
* @return {!proto.payrollserviceapi.UpdateBusinessRequest} returns this
|
|
9219
|
-
*/
|
|
9220
|
-
proto.payrollserviceapi.UpdateBusinessRequest.prototype.setBsb = function(value) {
|
|
9221
|
-
return jspb.Message.setProto3StringField(this, 4, value);
|
|
9222
|
-
};
|
|
9223
|
-
|
|
9224
|
-
|
|
9225
|
-
/**
|
|
9226
|
-
* optional string account_number = 5;
|
|
9227
|
-
* @return {string}
|
|
9228
|
-
*/
|
|
9229
|
-
proto.payrollserviceapi.UpdateBusinessRequest.prototype.getAccountNumber = function() {
|
|
9230
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
9231
|
-
};
|
|
9232
|
-
|
|
9233
|
-
|
|
9234
|
-
/**
|
|
9235
|
-
* @param {string} value
|
|
9236
|
-
* @return {!proto.payrollserviceapi.UpdateBusinessRequest} returns this
|
|
9237
|
-
*/
|
|
9238
|
-
proto.payrollserviceapi.UpdateBusinessRequest.prototype.setAccountNumber = function(value) {
|
|
9239
|
-
return jspb.Message.setProto3StringField(this, 5, value);
|
|
9240
|
-
};
|
|
9241
|
-
|
|
9242
|
-
|
|
9243
|
-
/**
|
|
9244
|
-
* optional bool is_active = 6;
|
|
9064
|
+
* optional bool is_active = 4;
|
|
9245
9065
|
* @return {boolean}
|
|
9246
9066
|
*/
|
|
9247
9067
|
proto.payrollserviceapi.UpdateBusinessRequest.prototype.getIsActive = function() {
|
|
9248
|
-
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this,
|
|
9068
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 4, false));
|
|
9249
9069
|
};
|
|
9250
9070
|
|
|
9251
9071
|
|
|
@@ -9254,16 +9074,16 @@ proto.payrollserviceapi.UpdateBusinessRequest.prototype.getIsActive = function()
|
|
|
9254
9074
|
* @return {!proto.payrollserviceapi.UpdateBusinessRequest} returns this
|
|
9255
9075
|
*/
|
|
9256
9076
|
proto.payrollserviceapi.UpdateBusinessRequest.prototype.setIsActive = function(value) {
|
|
9257
|
-
return jspb.Message.setProto3BooleanField(this,
|
|
9077
|
+
return jspb.Message.setProto3BooleanField(this, 4, value);
|
|
9258
9078
|
};
|
|
9259
9079
|
|
|
9260
9080
|
|
|
9261
9081
|
/**
|
|
9262
|
-
* optional int64 agent_user_id =
|
|
9082
|
+
* optional int64 agent_user_id = 5;
|
|
9263
9083
|
* @return {number}
|
|
9264
9084
|
*/
|
|
9265
9085
|
proto.payrollserviceapi.UpdateBusinessRequest.prototype.getAgentUserId = function() {
|
|
9266
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
9086
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
9267
9087
|
};
|
|
9268
9088
|
|
|
9269
9089
|
|
|
@@ -9272,16 +9092,16 @@ proto.payrollserviceapi.UpdateBusinessRequest.prototype.getAgentUserId = functio
|
|
|
9272
9092
|
* @return {!proto.payrollserviceapi.UpdateBusinessRequest} returns this
|
|
9273
9093
|
*/
|
|
9274
9094
|
proto.payrollserviceapi.UpdateBusinessRequest.prototype.setAgentUserId = function(value) {
|
|
9275
|
-
return jspb.Message.setProto3IntField(this,
|
|
9095
|
+
return jspb.Message.setProto3IntField(this, 5, value);
|
|
9276
9096
|
};
|
|
9277
9097
|
|
|
9278
9098
|
|
|
9279
9099
|
/**
|
|
9280
|
-
* optional int64 client_user_id =
|
|
9100
|
+
* optional int64 client_user_id = 6;
|
|
9281
9101
|
* @return {number}
|
|
9282
9102
|
*/
|
|
9283
9103
|
proto.payrollserviceapi.UpdateBusinessRequest.prototype.getClientUserId = function() {
|
|
9284
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
9104
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
9285
9105
|
};
|
|
9286
9106
|
|
|
9287
9107
|
|
|
@@ -9290,7 +9110,7 @@ proto.payrollserviceapi.UpdateBusinessRequest.prototype.getClientUserId = functi
|
|
|
9290
9110
|
* @return {!proto.payrollserviceapi.UpdateBusinessRequest} returns this
|
|
9291
9111
|
*/
|
|
9292
9112
|
proto.payrollserviceapi.UpdateBusinessRequest.prototype.setClientUserId = function(value) {
|
|
9293
|
-
return jspb.Message.setProto3IntField(this,
|
|
9113
|
+
return jspb.Message.setProto3IntField(this, 6, value);
|
|
9294
9114
|
};
|
|
9295
9115
|
|
|
9296
9116
|
|