/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * responseType: "code", * redirectURI: "string", * clientID: "string" * } */ export interface GetAuthorizationURLOpts { loginHint?: string; provider?: string; state?: string; organizationID?: string; /** * The response type of the application. */ responseType: "code"; redirectURI: string; clientID: string; }