createInviteCodes method

Future<XRPCResponse<ServerCreateInviteCodesOutput>> createInviteCodes({
  1. required int codeCount,
  2. required int useCount,
  3. List<String>? forAccounts,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Create invite codes.

Implementation

Future<XRPCResponse<ServerCreateInviteCodesOutput>> createInviteCodes({
  required int codeCount,
  required int useCount,
  List<String>? forAccounts,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoServerCreateInviteCodes(
  codeCount: codeCount,
  useCount: useCount,
  forAccounts: forAccounts,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);