/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * instance_id: "instance_id", * client_id: "client_id", * redirect_url: "redirect_url" * } */ export interface OauthAuthorizeCalcomRequest { /** * Unique identifier for the client instance requesting authorization */ instance_id: string; /** * Client ID for white labeling, if not provided will use default credentials */ client_id?: string; /** * Optional URL to redirect to after authorization completes */ redirect_url?: string; }