accountUserRoleList abstract method

  1. @Get(path: '/account_user_role')
Future<Response<AccountUserRoleGet$Response>> accountUserRoleList({
  1. @Query('user_email') String? user_email,
  2. @Query('limit') int? limit,
  3. @Query('offset') int? offset,
})

@param user_email @param limit Number of results to return per page. @param offset The initial index from which to return the results.

Implementation

@Get(path: '/account_user_role')
Future<chopper.Response<AccountUserRoleGet$Response>> accountUserRoleList(
    {@Query('user_email') String? user_email,
    @Query('limit') int? limit,
    @Query('offset') int? offset});