queryAggregateCallStatsWithHttpInfo method

Future<Response> queryAggregateCallStatsWithHttpInfo(
  1. QueryAggregateCallStatsRequest queryAggregateCallStatsRequest
)

Query Aggregate call Stats

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> queryAggregateCallStatsWithHttpInfo(
  QueryAggregateCallStatsRequest queryAggregateCallStatsRequest,
) async {
  // ignore: prefer_const_declarations
  final path = r'/video/stats';

  // ignore: prefer_final_locals
  Object? postBody = queryAggregateCallStatsRequest;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>['application/json'];

  return apiClient.invokeAPI(
    path,
    'POST',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}