accountEventStatusesList abstract method

  1. @Get(path: '/account_event_statuses')
Future<Response<AccountEventStatusesGet$Response>> accountEventStatusesList({
  1. @Query('external_code') String? external_code,
  2. @Query('name') String? name,
  3. @Query('slug') String? slug,
  4. @Query('limit') int? limit,
  5. @Query('offset') int? offset,
})

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

Implementation

@Get(path: '/account_event_statuses')
Future<chopper.Response<AccountEventStatusesGet$Response>>
    accountEventStatusesList(
        {@Query('external_code') String? external_code,
        @Query('name') String? name,
        @Query('slug') String? slug,
        @Query('limit') int? limit,
        @Query('offset') int? offset});