swapVisionarySlots abstract method

  1. @POST.new('/admin/visionary-slots/swap')
Future<VisionarySlotOperationResponse> swapVisionarySlots({
  1. @Body.new() required SwapVisionarySlotsRequest body,
})

Swap visionary slot reservations.

Swap the reserved user IDs between two slot indices.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/visionary-slots/swap')
Future<VisionarySlotOperationResponse> swapVisionarySlots({
  @Body() required SwapVisionarySlotsRequest body,
});