getMinuteUsage method

Future<GetMinuteUsageResponse> getMinuteUsage({
  1. required int month,
  2. required int year,
})

Returns the number of minutes used by account.

May throw InvalidParameterException. May throw DependencyException. May throw ResourceNotFoundException.

Parameter month : The month being requested, with a value of 1-12.

Parameter year : The year being requested, in the format of YYYY.

Implementation

Future<GetMinuteUsageResponse> getMinuteUsage({
  required int month,
  required int year,
}) async {
  ArgumentError.checkNotNull(month, 'month');
  ArgumentError.checkNotNull(year, 'year');
  final $payload = <String, dynamic>{
    'month': month,
    'year': year,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/minute-usage',
    exceptionFnMap: _exceptionFns,
  );
  return GetMinuteUsageResponse.fromJson(response);
}