reportGuild abstract method

  1. @POST.new('/reports/guild')
Future<ReportResponse> reportGuild({
  1. @Body.new() required ReportGuildRequest body,
})

Report guild.

Submits a report about a guild to moderators for policy violation review.

body - Name not received - field will be skipped.

Implementation

@POST('/reports/guild')
Future<ReportResponse> reportGuild({
  @Body() required ReportGuildRequest body,
});