retrieveInactiveUserActions method

Future<ClientResponse<UserActionResponse, void>> retrieveInactiveUserActions()

Retrieves all the user actions that are currently inactive.

@returns {Promise<ClientResponse

Implementation

Future<ClientResponse<UserActionResponse, void>>
    retrieveInactiveUserActions() {
  return _start<UserActionResponse, void>()
      .withUri('/api/user-action')
      .withParameter('inactive', true)
      .withMethod('GET')
      .withResponseHandler(defaultResponseHandlerBuilder(
          (d) => UserActionResponse.fromJson(d)))
      .go();
}