/** * @example * { * userId: "user_id", * expiresAt: new Date("2024-01-15T09:30:00.000Z") * } */ export interface LinkCodeCreateRequest { userId: string; /** When the link code should expire. Defaults to server time plus 1 hour. */ expiresAt?: Date; }