Vana SDK - v2.2.2
    Preparing search index...

    Interface GenericRequest<TParams, TOptions>

    Represents a standardized request structure for SDK operations.

    Provides consistent request handling across all SDK methods with typed parameters and optional configuration.

    interface GenericRequest<TParams = unknown, TOptions = unknown> {
        params: TParams;
        options?: TOptions;
    }

    Type Parameters

    • TParams = unknown

      Type of request parameters

    • TOptions = unknown

      Type of optional configuration

    Index

    Properties

    Properties

    params: TParams

    Request parameters

    options?: TOptions

    Additional request options