Documentation
    Preparing search index...

    Interface IntentUrlOptions

    Options when building an intent deep link URL.

    interface IntentUrlOptions {
        connectRequest?: ConnectRequest;
        objectStorageUrl?: string;
        ttl?: number;
        useObjectStorage?: boolean;
    }
    Index

    Properties

    connectRequest?: ConnectRequest

    Optional connect request to establish/reuse connection after the intent (spec field c).

    objectStorageUrl?: string

    Object storage base URL when useObjectStorage is true.

    ttl?: number

    TTL in seconds for object storage.

    useObjectStorage?: boolean

    Use object storage for payload instead of URL-embedded (Approach 1 vs 2).