getInvoiceSummary2 method

Future<MonthlyInvoiceSummaryModel> getInvoiceSummary2(
  1. int year,
  2. int month, {
  3. required Object authorization,
})

Parameters:

  • int year (required):

  • int month (required):

  • Object authorization:

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;
}