@sniipwebmaster/realtime-message-client-grpcweb 21.24.272 → 21.24.288
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 +30 -1
- package/package.json +1 -1
|
@@ -3903,7 +3903,8 @@ proto.realtimemessageapi.BulkPaymentTaskSummary.toObject = function(includeInsta
|
|
|
3903
3903
|
taskid: msg.getTaskid(),
|
|
3904
3904
|
billid: msg.getBillid(),
|
|
3905
3905
|
amount: msg.getAmount(),
|
|
3906
|
-
status: msg.getStatus()
|
|
3906
|
+
status: msg.getStatus(),
|
|
3907
|
+
isarchived: msg.getIsarchived()
|
|
3907
3908
|
};
|
|
3908
3909
|
|
|
3909
3910
|
if (includeInstance) {
|
|
@@ -3956,6 +3957,10 @@ proto.realtimemessageapi.BulkPaymentTaskSummary.deserializeBinaryFromReader = fu
|
|
|
3956
3957
|
var value = /** @type {string} */ (reader.readString());
|
|
3957
3958
|
msg.setStatus(value);
|
|
3958
3959
|
break;
|
|
3960
|
+
case 5:
|
|
3961
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
3962
|
+
msg.setIsarchived(value);
|
|
3963
|
+
break;
|
|
3959
3964
|
default:
|
|
3960
3965
|
reader.skipField();
|
|
3961
3966
|
break;
|
|
@@ -4022,6 +4027,13 @@ proto.realtimemessageapi.BulkPaymentTaskSummary.prototype.serializeBinaryToWrite
|
|
|
4022
4027
|
f
|
|
4023
4028
|
);
|
|
4024
4029
|
}
|
|
4030
|
+
f = this.getIsarchived();
|
|
4031
|
+
if (f) {
|
|
4032
|
+
writer.writeBool(
|
|
4033
|
+
5,
|
|
4034
|
+
f
|
|
4035
|
+
);
|
|
4036
|
+
}
|
|
4025
4037
|
};
|
|
4026
4038
|
|
|
4027
4039
|
|
|
@@ -4094,6 +4106,23 @@ proto.realtimemessageapi.BulkPaymentTaskSummary.prototype.setStatus = function(v
|
|
|
4094
4106
|
};
|
|
4095
4107
|
|
|
4096
4108
|
|
|
4109
|
+
/**
|
|
4110
|
+
* optional bool isArchived = 5;
|
|
4111
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
4112
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
4113
|
+
* @return {boolean}
|
|
4114
|
+
*/
|
|
4115
|
+
proto.realtimemessageapi.BulkPaymentTaskSummary.prototype.getIsarchived = function() {
|
|
4116
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 5, false));
|
|
4117
|
+
};
|
|
4118
|
+
|
|
4119
|
+
|
|
4120
|
+
/** @param {boolean} value */
|
|
4121
|
+
proto.realtimemessageapi.BulkPaymentTaskSummary.prototype.setIsarchived = function(value) {
|
|
4122
|
+
jspb.Message.setField(this, 5, value);
|
|
4123
|
+
};
|
|
4124
|
+
|
|
4125
|
+
|
|
4097
4126
|
|
|
4098
4127
|
/**
|
|
4099
4128
|
* Generated by JsPbCodeGenerator.
|