@sniipwebmaster/agent-billing-client-grpcweb-ts 26.1.4900 → 26.1.4917
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.
|
@@ -2070,6 +2070,9 @@ export class GetAgentBillsResponse extends jspb.Message {
|
|
|
2070
2070
|
getDeliverybatchtype(): DeliveryBatchType;
|
|
2071
2071
|
setDeliverybatchtype(value: DeliveryBatchType): GetAgentBillsResponse;
|
|
2072
2072
|
|
|
2073
|
+
getTotalbillsamount(): number;
|
|
2074
|
+
setTotalbillsamount(value: number): GetAgentBillsResponse;
|
|
2075
|
+
|
|
2073
2076
|
serializeBinary(): Uint8Array;
|
|
2074
2077
|
toObject(includeInstance?: boolean): GetAgentBillsResponse.AsObject;
|
|
2075
2078
|
static toObject(includeInstance: boolean, msg: GetAgentBillsResponse): GetAgentBillsResponse.AsObject;
|
|
@@ -2090,6 +2093,7 @@ export namespace GetAgentBillsResponse {
|
|
|
2090
2093
|
cansenddeliverybatchreminder: boolean,
|
|
2091
2094
|
clientid: number,
|
|
2092
2095
|
deliverybatchtype: DeliveryBatchType,
|
|
2096
|
+
totalbillsamount: number,
|
|
2093
2097
|
}
|
|
2094
2098
|
}
|
|
2095
2099
|
|
|
@@ -17819,7 +17819,8 @@ proto.agentbillingserviceapi.GetAgentBillsResponse.toObject = function(includeIn
|
|
|
17819
17819
|
relevantbatchname: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
17820
17820
|
cansenddeliverybatchreminder: jspb.Message.getBooleanFieldWithDefault(msg, 8, false),
|
|
17821
17821
|
clientid: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
17822
|
-
deliverybatchtype: jspb.Message.getFieldWithDefault(msg, 10, 0)
|
|
17822
|
+
deliverybatchtype: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
|
17823
|
+
totalbillsamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 11, 0.0)
|
|
17823
17824
|
};
|
|
17824
17825
|
|
|
17825
17826
|
if (includeInstance) {
|
|
@@ -17898,6 +17899,10 @@ proto.agentbillingserviceapi.GetAgentBillsResponse.deserializeBinaryFromReader =
|
|
|
17898
17899
|
var value = /** @type {!proto.agentbillingserviceapi.DeliveryBatchType} */ (reader.readEnum());
|
|
17899
17900
|
msg.setDeliverybatchtype(value);
|
|
17900
17901
|
break;
|
|
17902
|
+
case 11:
|
|
17903
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
17904
|
+
msg.setTotalbillsamount(value);
|
|
17905
|
+
break;
|
|
17901
17906
|
default:
|
|
17902
17907
|
reader.skipField();
|
|
17903
17908
|
break;
|
|
@@ -17999,6 +18004,13 @@ proto.agentbillingserviceapi.GetAgentBillsResponse.serializeBinaryToWriter = fun
|
|
|
17999
18004
|
f
|
|
18000
18005
|
);
|
|
18001
18006
|
}
|
|
18007
|
+
f = message.getTotalbillsamount();
|
|
18008
|
+
if (f !== 0.0) {
|
|
18009
|
+
writer.writeDouble(
|
|
18010
|
+
11,
|
|
18011
|
+
f
|
|
18012
|
+
);
|
|
18013
|
+
}
|
|
18002
18014
|
};
|
|
18003
18015
|
|
|
18004
18016
|
|
|
@@ -18221,6 +18233,24 @@ proto.agentbillingserviceapi.GetAgentBillsResponse.prototype.setDeliverybatchtyp
|
|
|
18221
18233
|
};
|
|
18222
18234
|
|
|
18223
18235
|
|
|
18236
|
+
/**
|
|
18237
|
+
* optional double totalBillsAmount = 11;
|
|
18238
|
+
* @return {number}
|
|
18239
|
+
*/
|
|
18240
|
+
proto.agentbillingserviceapi.GetAgentBillsResponse.prototype.getTotalbillsamount = function() {
|
|
18241
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 11, 0.0));
|
|
18242
|
+
};
|
|
18243
|
+
|
|
18244
|
+
|
|
18245
|
+
/**
|
|
18246
|
+
* @param {number} value
|
|
18247
|
+
* @return {!proto.agentbillingserviceapi.GetAgentBillsResponse} returns this
|
|
18248
|
+
*/
|
|
18249
|
+
proto.agentbillingserviceapi.GetAgentBillsResponse.prototype.setTotalbillsamount = function(value) {
|
|
18250
|
+
return jspb.Message.setProto3FloatField(this, 11, value);
|
|
18251
|
+
};
|
|
18252
|
+
|
|
18253
|
+
|
|
18224
18254
|
|
|
18225
18255
|
|
|
18226
18256
|
|