eventPositionsList abstract method

  1. @Get(path: '/event_positions')
Future<Response<EventPositionsGet$Response>> eventPositionsList({
  1. @Query('external_code') String? external_code,
  2. @Query('status') String? status,
  3. @Query('limit') int? limit,
  4. @Query('offset') int? offset,
})

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

Implementation

@Get(path: '/event_positions')
Future<chopper.Response<EventPositionsGet$Response>> eventPositionsList(
    {@Query('external_code') String? external_code,
    @Query('status') String? status,
    @Query('limit') int? limit,
    @Query('offset') int? offset});