Streaming service.

Represents a streaming service.

interface StreamingService {
    name: string;
    smallThumbnailUrl?: string;
    largeThumbnailUrl?: string;
    overlayThumbnailUrl?: string;
    isAvailable: boolean;
    link?: StreamingServiceLink;
    equals(obj): boolean;
}

Properties

name: string

Streaming service name.

smallThumbnailUrl?: string

Streaming service small thumbnail image url.

largeThumbnailUrl?: string

Streaming service large thumbnail image url.

overlayThumbnailUrl?: string

Streaming service overlay image url.

isAvailable: boolean

Whether this streaming service is currently available or is undergoing maintenance.

Streaming service link info if this service was linked by the user.

Methods

  • Tests for equality.

    Parameters

    Returns boolean