Represents the response to a subscribe request.

interface SubscribeResponse {
    iceServers: {
        credential?: string;
        urls: string[];
        userName?: string;
    }[];
    jwt: string;
    streamAccountId: string;
    urls: string[];
}

Hierarchy (view full)

Properties

iceServers: {
    credential?: string;
    urls: string[];
    userName?: string;
}[]

List of ICE servers.

Type declaration

  • Optional credential?: string

    Credential to authenticate requests to the ICE server.

  • urls: string[]

    List of URLs to access this ICE server.

  • Optional userName?: string

    Username to authenticate requests to the ICE server.

jwt: string

The JWT token used for authentication.

streamAccountId: string

Dolby Millicast account ID.

urls: string[]

List of URLs.