Player configuration. Controls player behavior and presentation.

interface PlayerConfig {
    unitNumber?: number;
    unitTitle?: string;
    unitId?: string;
    logPolicy?: AllowedPropertiesValues.LogPolicy;
    pagingMode?: AllowedPropertiesValues.PagingMode;
    printMode?: AllowedPropertiesValues.PrintMode;
    enabledNavigationTargets?: AllowedPropertiesValues.NavigationTarget[];
    startPage?: string;
    directDownloadUrl?: string;
    sharedParameters?: MainSchema.SharedParameter[];
}

Properties

unitNumber?: number
unitTitle?: string
unitId?: string
enabledNavigationTargets?: AllowedPropertiesValues.NavigationTarget[]
startPage?: string
directDownloadUrl?: string
sharedParameters?: MainSchema.SharedParameter[]