getAccountStatus method

Future<GetAccountStatusResponse> getAccountStatus()

Gets the registration status of an account in Audit Manager.

May throw InternalServerException.

Implementation

Future<GetAccountStatusResponse> getAccountStatus() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/account/status',
    exceptionFnMap: _exceptionFns,
  );
  return GetAccountStatusResponse.fromJson(response);
}