expandVisionarySlots abstract method

  1. @POST.new('/admin/visionary-slots/expand')
Future<VisionarySlotOperationResponse> expandVisionarySlots({
  1. @Body.new() required ExpandVisionarySlotsRequest body,
})

Expand visionary slots.

Create additional visionary slots. New slots are added at the next available indices.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/visionary-slots/expand')
Future<VisionarySlotOperationResponse> expandVisionarySlots({
  @Body() required ExpandVisionarySlotsRequest body,
});