Websites v4 docs v5.2.4
    Preparing search index...

    Interface SessionsResponse

    interface SessionsResponse {
        cookie?: SessionCookie;
        error?: string;
        error_description?: string;
        oauth?: {
            access_token: string;
            expires_at: string;
            expires_in: number;
            refresh_token: string;
            token_type: string;
        };
        user?: UserData;
    }
    Index

    Properties

    cookie?: SessionCookie
    error?: string
    error_description?: string
    oauth?: {
        access_token: string;
        expires_at: string;
        expires_in: number;
        refresh_token: string;
        token_type: string;
    }
    user?: UserData