ojp-sdk
    Preparing search index...

    Interface HTTPConfig

    Configuration interface for HTTP requests

    This interface defines the structure for configuring HTTP request settings, including the target URL and authentication token.

    const config: HTTPConfig = {
    url: 'https://api.example.com/data',
    authToken: 'Bearer abc123xyz'
    };
    interface HTTPConfig {
        authToken: string | null;
        url: string;
    }
    Index

    Properties

    Properties

    authToken: string | null
    url: string