shrinkVisionarySlots abstract method

  1. @POST.new('/admin/visionary-slots/shrink')
Future<VisionarySlotOperationResponse> shrinkVisionarySlots({
  1. @Body.new() required ShrinkVisionarySlotsRequest body,
})

Shrink visionary slots.

Reduce the total number of visionary slots. Only unreserved slots from the highest indices can be removed. Fails if reserved slots would be deleted.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/visionary-slots/shrink')
Future<VisionarySlotOperationResponse> shrinkVisionarySlots({
  @Body() required ShrinkVisionarySlotsRequest body,
});