getClientCertificates method

Future<ClientCertificates> getClientCertificates({
  1. int? limit,
  2. String? position,
})

Gets a collection of ClientCertificate resources.

May throw BadRequestException. May throw UnauthorizedException. May throw TooManyRequestsException.

Parameter limit : The maximum number of returned results per page. The default value is 25 and the maximum value is 500.

Parameter position : The current pagination position in the paged result set.

Implementation

Future<ClientCertificates> getClientCertificates({
  int? limit,
  String? position,
}) async {
  final $query = <String, List<String>>{
    if (limit != null) 'limit': [limit.toString()],
    if (position != null) 'position': [position],
  };
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/clientcertificates',
    queryParams: $query,
    exceptionFnMap: _exceptionFns,
  );
  return ClientCertificates.fromJson(response);
}