disableAccountInvites method

Future<XRPCResponse<EmptyData>> disableAccountInvites({
  1. required String account,
  2. String? note,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Disable an account from receiving new invite codes, but does not invalidate existing codes.

Implementation

Future<XRPCResponse<EmptyData>> disableAccountInvites({
  required String account,
  String? note,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoAdminDisableAccountInvites(
  account: account,
  note: note,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);