/** * This file was auto-generated by Fern from our API Definition. */ export interface GetAuthDataResponse { /** Whether the request was successful */ success: boolean; /** Complete authentication data including access token, refresh token, scope, expiration, and platform-specific data */ authData?: Record; /** Error message if the request failed */ error?: string; }