@sniipwebmaster/payroll-service-client-grpcweb 25.8.133 → 25.8.148
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.
|
@@ -2050,7 +2050,7 @@ proto.payrollserviceapi.ABARecord.toObject = function(includeInstance, msg) {
|
|
|
2050
2050
|
bsb: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
2051
2051
|
accountNumber: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
2052
2052
|
amount: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0),
|
|
2053
|
-
|
|
2053
|
+
accountname: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
2054
2054
|
paymentDate: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
2055
2055
|
status: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
2056
2056
|
employeeId: jspb.Message.getFieldWithDefault(msg, 8, 0),
|
|
@@ -2111,7 +2111,7 @@ proto.payrollserviceapi.ABARecord.deserializeBinaryFromReader = function(msg, re
|
|
|
2111
2111
|
break;
|
|
2112
2112
|
case 5:
|
|
2113
2113
|
var value = /** @type {string} */ (reader.readString());
|
|
2114
|
-
msg.
|
|
2114
|
+
msg.setAccountname(value);
|
|
2115
2115
|
break;
|
|
2116
2116
|
case 6:
|
|
2117
2117
|
var value = /** @type {string} */ (reader.readString());
|
|
@@ -2194,7 +2194,7 @@ proto.payrollserviceapi.ABARecord.serializeBinaryToWriter = function(message, wr
|
|
|
2194
2194
|
f
|
|
2195
2195
|
);
|
|
2196
2196
|
}
|
|
2197
|
-
f = message.
|
|
2197
|
+
f = message.getAccountname();
|
|
2198
2198
|
if (f.length > 0) {
|
|
2199
2199
|
writer.writeString(
|
|
2200
2200
|
5,
|
|
@@ -2319,10 +2319,10 @@ proto.payrollserviceapi.ABARecord.prototype.setAmount = function(value) {
|
|
|
2319
2319
|
|
|
2320
2320
|
|
|
2321
2321
|
/**
|
|
2322
|
-
* optional string
|
|
2322
|
+
* optional string accountName = 5;
|
|
2323
2323
|
* @return {string}
|
|
2324
2324
|
*/
|
|
2325
|
-
proto.payrollserviceapi.ABARecord.prototype.
|
|
2325
|
+
proto.payrollserviceapi.ABARecord.prototype.getAccountname = function() {
|
|
2326
2326
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
2327
2327
|
};
|
|
2328
2328
|
|
|
@@ -2331,7 +2331,7 @@ proto.payrollserviceapi.ABARecord.prototype.getReference = function() {
|
|
|
2331
2331
|
* @param {string} value
|
|
2332
2332
|
* @return {!proto.payrollserviceapi.ABARecord} returns this
|
|
2333
2333
|
*/
|
|
2334
|
-
proto.payrollserviceapi.ABARecord.prototype.
|
|
2334
|
+
proto.payrollserviceapi.ABARecord.prototype.setAccountname = function(value) {
|
|
2335
2335
|
return jspb.Message.setProto3StringField(this, 5, value);
|
|
2336
2336
|
};
|
|
2337
2337
|
|