Represents the external id information for serialization to the client.

ExternalIdInfo

interface ExternalIdInfo {
    Key?: string;
    Name?: string;
    Type?: ExternalIdMediaType;
    UrlFormatString?: null | string;
}

Properties

Key?: string

Gets or sets the unique key for this id. This key should be unique across all providers.

ExternalIdInfo

Name?: string

Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc).

ExternalIdInfo

ExternalIdInfo

UrlFormatString?: null | string

Gets or sets the URL format string.

ExternalIdInfo