disableAccountInvites method
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,
);