getSignalMap method

Future<GetSignalMapResponse> getSignalMap({
  1. required String identifier,
})

Retrieves the specified signal map.

May throw BadRequestException. May throw ForbiddenException. May throw InternalServerErrorException. May throw NotFoundException. May throw TooManyRequestsException.

Parameter identifier : A signal map's identifier. Can be either be its id or current name.

Implementation

Future<GetSignalMapResponse> getSignalMap({
  required String identifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/prod/signal-maps/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetSignalMapResponse.fromJson(response);
}