Vana SDK - v0.1.0
    Preparing search index...

    Interface APIResponse<T>

    Standard API response wrapper

    interface APIResponse<T = unknown> {
        success: boolean;
        data?: T;
        error?: string;
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    Properties

    success: boolean

    Whether the request was successful

    data?: T

    Response data (if successful)

    error?: string

    Error message (if unsuccessful)