Represents API credentials for authentication.
export interface APICredentials { source: "default" | "custom"; clientId: string; clientSecret: string; redirectUri: string;} Copy
export interface APICredentials { source: "default" | "custom"; clientId: string; clientSecret: string; redirectUri: string;}
The credential source (default or custom).
The client ID for the API.
The client secret for the API.
The redirect URI for OAuth.
Represents API credentials for authentication.
Source