getInvoiceSummary2 method
Implementation
Future<MonthlyInvoiceSummaryModel> getInvoiceSummary2(
int year,
int month, {
required Object authorization,
}) async {
final response = await getInvoiceSummary2WithHttpInfo(
year,
month,
authorization: authorization,
);
return await apiClient.deserializeAsync(
await _decodeBodyBytes(response),
'MonthlyInvoiceSummaryModel',
) as MonthlyInvoiceSummaryModel;
}