@n8n-plus/n8n-plus
Version:
n8n Workflow Automation Tool (plus edition)
16 lines (15 loc) • 421 B
TypeScript
import { User, WithTimestamps } from '@n8n/db';
import { OAuthClient } from './oauth-client.entity';
export declare class AuthorizationCode extends WithTimestamps {
code: string;
client: OAuthClient;
clientId: string;
user: User;
userId: string;
redirectUri: string;
codeChallenge: string;
codeChallengeMethod: string;
state: string | null;
expiresAt: number;
used: boolean;
}