disableInviteCodes method

Future<XRPCResponse<EmptyData>> disableInviteCodes({
  1. List<String>? codes,
  2. List<String>? accounts,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Disable some set of codes and/or all codes associated with a set of users.

Implementation

Future<XRPCResponse<EmptyData>> disableInviteCodes({
  List<String>? codes,
  List<String>? accounts,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoAdminDisableInviteCodes(
  codes: codes,
  accounts: accounts,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);