react-native-younify-connect-sdk
    Preparing search index...

    Interface StreamingService

    Streaming service.

    Represents a streaming service.

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

    Properties

    id: string

    Streaming service id.

    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