Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 0ecfc97 🚀
Browse files Browse the repository at this point in the history
github-merge-queue[bot] committed Nov 4, 2024

Verified

This commit was signed with the committer’s verified signature.
axelboc Axel Bocciarelli
0 parents commit 9f0b3ab
Showing 1,291 changed files with 168,431 additions and 0 deletions.
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
android.pillarbox.ch
4 changes: 4 additions & 0 deletions api/images/anchor-copy-button.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions api/images/arrow_down.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions api/images/burger.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions api/images/copy-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions api/images/copy-successful-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions api/images/footer-go-to-link.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions api/images/go-to-top-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions api/images/homepage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions api/images/logo-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions api/images/nav-icons/abstract-class-kotlin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions api/images/nav-icons/abstract-class.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions api/images/nav-icons/annotation-kotlin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions api/images/nav-icons/annotation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions api/images/nav-icons/class-kotlin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions api/images/nav-icons/class.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions api/images/nav-icons/enum-kotlin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions api/images/nav-icons/enum.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions api/images/nav-icons/exception-class.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions api/images/nav-icons/field-value.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions api/images/nav-icons/field-variable.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions api/images/nav-icons/function.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions api/images/nav-icons/interface-kotlin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions api/images/nav-icons/interface.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions api/images/nav-icons/object.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions api/images/nav-icons/typealias-kotlin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions api/images/theme-toggle.svg
169 changes: 169 additions & 0 deletions api/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,169 @@
<!DOCTYPE html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Pillarbox</title>
<link href="images/logo-icon.svg" rel="icon" type="image/svg">
<script>var pathToRoot = "";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="scripts/sourceset_dependencies.js" async="async"></script>
<link href="styles/style.css" rel="Stylesheet">
<link href="styles/main.css" rel="Stylesheet">
<link href="styles/prism.css" rel="Stylesheet">
<link href="styles/logo-styles.css" rel="Stylesheet">
<link href="styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="scripts/clipboard.js" async="async"></script>
<script type="text/javascript" src="scripts/navigation-loader.js" async="async"></script>
<script type="text/javascript" src="scripts/platform-content-handler.js" async="async"></script>
<script type="text/javascript" src="scripts/main.js" defer="defer"></script>
<script type="text/javascript" src="scripts/prism.js" async="async"></script>
<script type="text/javascript" src="ui-kit/ui-kit.min.js" async="async"></script>
<script type="text/javascript" src="scripts/symbol-parameters-wrapper_deferred.js" defer="defer"></script>
<link href="images/logo-icon.svg">
<link href="styles/pillarbox.css" rel="Stylesheet">
</head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="index.html">
Pillarbox
</a>
</div>
<div class="library-version">
dev </div>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageIds="Pillarbox::.ext/allModules///PointingToDeclaration//0">
<div class="breadcrumbs"></div>
<div class="cover ">
<div class="cover "><!-- Workaround https://github.com/Kotlin/dokka/issues/3886 --><h1 class="cover"><span><span>Pillarbox Player for Android</span></span></h1>
<p class="paragraph">Pillarbox is the modern SRG SSR multimedia player ecosystem, built on top of <a href="https://developer.android.com/media/media3">AndroidX Media3</a>. Pillarbox has been designed with robustness, flexibility, and efficiency in mind, with many customization options available.</p>
<p class="paragraph">It is split in multiple modules, whose documentation is available from the side menu.</p>
<h2 class="">Additional resources:</h2>
<ul>
<li>
<p class="paragraph"><a href="https://github.com/SRGSSR/pillarbox-android">GitHub repository</a></p>
</li>
<li>
<p class="paragraph"><a href="https://github.com/SRGSSR/pillarbox-android/releases">Pillarbox releases</a></p>
</li>
<li>
<p class="paragraph"><a href="https://swiftpackageindex.com/SRGSSR/pillarbox-apple">Pillarbox for Apple</a></p>
</li>
<li>
<p class="paragraph"><a href="https://web.pillarbox.ch/api/">Pillarbox for the Web</a></p>
</li>
</ul>
</div>
<h2 class="">All modules:</h2>
<div class="table"><a data-name="2125936051%2FMain%2F0" anchor-label="pillarbox-analytics" id="2125936051%2FMain%2F0" data-filterable-set=""></a>
<div class="table-row">
<div class="main-subrow ">
<div class="w-100"><span class="inline-flex">
<div><a href="pillarbox-analytics/index.html">pillarbox-analytics</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2125936051%2FMain%2F0"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div><span class="brief-comment">
<p class="paragraph">Provides SRG SSR implementation for <a href="https://www.commandersact.com/">Commanders Act</a> and <a href="https://comscore.com/">ComScore</a> to send page view events and custom events.</p>
</span></div>
</div>
</div>
<a data-name="784206474%2FMain%2F0" anchor-label="pillarbox-cast" id="784206474%2FMain%2F0" data-filterable-set=""></a>
<div class="table-row">
<div class="main-subrow ">
<div class="w-100"><span class="inline-flex">
<div><a href="pillarbox-cast/index.html">pillarbox-cast</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="784206474%2FMain%2F0"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div><span class="brief-comment">
<p class="paragraph">Provides helpers to integrate Cast with Pillarbox.</p>
</span></div>
</div>
</div>
<a data-name="1194886155%2FMain%2F0" anchor-label="pillarbox-core-business" id="1194886155%2FMain%2F0" data-filterable-set=""></a>
<div class="table-row">
<div class="main-subrow ">
<div class="w-100"><span class="inline-flex">
<div><a href="pillarbox-core-business/index.html">pillarbox-core-business</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1194886155%2FMain%2F0"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div><span class="brief-comment">
<p class="paragraph">Provides a <a href="https://developer.android.com/reference/androidx/media3/exoplayer/source/MediaSource"><code class="lang-kotlin">MediaSource</code></a> for handling SRG SSR media URNs to Pillarbox. It basically converts an integration layer ch.srgssr.pillarbox.core.business.integrationlayer.data.MediaComposition to a playable <code class="lang-kotlin">MediaSource</code>.</p>
</span></div>
</div>
</div>
<a data-name="-1676044504%2FMain%2F0" anchor-label="pillarbox-player" id="-1676044504%2FMain%2F0" data-filterable-set=""></a>
<div class="table-row">
<div class="main-subrow ">
<div class="w-100"><span class="inline-flex">
<div><a href="pillarbox-player/index.html">pillarbox-player</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1676044504%2FMain%2F0"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div><span class="brief-comment">
<p class="paragraph">Provides ch.srgssr.pillarbox.player.PillarboxPlayer, the <a href="https://developer.android.com/reference/androidx/media3/exoplayer/ExoPlayer"><code class="lang-kotlin">Exoplayer</code></a> implementation of media playback on Android.</p>
</span></div>
</div>
</div>
<a data-name="-2068332843%2FMain%2F0" anchor-label="pillarbox-ui" id="-2068332843%2FMain%2F0" data-filterable-set=""></a>
<div class="table-row">
<div class="main-subrow ">
<div class="w-100"><span class="inline-flex">
<div><a href="pillarbox-ui/index.html">pillarbox-ui</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2068332843%2FMain%2F0"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div><span class="brief-comment">
<p class="paragraph">Provides UI Compose components:</p>
</span></div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
2,137 changes: 2,137 additions & 0 deletions api/navigation.html

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions api/package-list
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
$dokka.format:html-v1
$dokka.linkExtension:html

module:pillarbox-analytics
ch.srgssr.pillarbox.analytics
ch.srgssr.pillarbox.analytics.commandersact
ch.srgssr.pillarbox.analytics.comscore
module:pillarbox-cast
ch.srgssr.pillarbox.cast
ch.srgssr.pillarbox.cast.widget
module:pillarbox-core-business
ch.srgssr.pillarbox.core.business
ch.srgssr.pillarbox.core.business.akamai
ch.srgssr.pillarbox.core.business.exception
ch.srgssr.pillarbox.core.business.extension
ch.srgssr.pillarbox.core.business.integrationlayer.data
ch.srgssr.pillarbox.core.business.integrationlayer.service
ch.srgssr.pillarbox.core.business.source
ch.srgssr.pillarbox.core.business.tracker
ch.srgssr.pillarbox.core.business.tracker.commandersact
ch.srgssr.pillarbox.core.business.tracker.comscore
module:pillarbox-player
ch.srgssr.pillarbox.player
ch.srgssr.pillarbox.player.analytics
ch.srgssr.pillarbox.player.analytics.metrics
ch.srgssr.pillarbox.player.asset
ch.srgssr.pillarbox.player.asset.timeRange
ch.srgssr.pillarbox.player.extension
ch.srgssr.pillarbox.player.monitoring
ch.srgssr.pillarbox.player.monitoring.models
ch.srgssr.pillarbox.player.network
ch.srgssr.pillarbox.player.notification
ch.srgssr.pillarbox.player.service
ch.srgssr.pillarbox.player.session
ch.srgssr.pillarbox.player.source
ch.srgssr.pillarbox.player.tracker
ch.srgssr.pillarbox.player.tracks
ch.srgssr.pillarbox.player.utils
module:pillarbox-ui
ch.srgssr.pillarbox.ui
ch.srgssr.pillarbox.ui.exoplayer
ch.srgssr.pillarbox.ui.extension
ch.srgssr.pillarbox.ui.widget
ch.srgssr.pillarbox.ui.widget.player
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!doctype html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>CommandersActEvent</title>
<link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async></script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script>
<link href="../../../styles/style.css" rel="Stylesheet">
<link href="../../../styles/main.css" rel="Stylesheet">
<link href="../../../styles/prism.css" rel="Stylesheet">
<link href="../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="../../../scripts/clipboard.js" async></script>
<script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script>
<script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script>
<script type="text/javascript" src="../../../scripts/main.js" defer></script>
<script type="text/javascript" src="../../../scripts/prism.js" async></script>
<script type="text/javascript" src="../../../ui-kit/ui-kit.min.js" async></script>
<script type="text/javascript" src="../../../scripts/symbol-parameters-wrapper_deferred.js" defer></script>
<link href="../../../styles/pillarbox.css" rel="Stylesheet"></head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="../../../index.html">
Pillarbox
</a> </div>
<div class="library-version">dev
</div>
</div>
<div class="filter-section" id="filter-section">
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":pillarbox-analytics/release">androidJvm</button>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" data-page-type="member" id="content" pageids="pillarbox-analytics::ch.srgssr.pillarbox.analytics.commandersact/CommandersActEvent/CommandersActEvent/#kotlin.String#kotlin.collections.Map[kotlin.String,kotlin.String]/PointingToDeclaration//-920939245">
<div class="breadcrumbs"><a href="../../index.html">pillarbox-analytics</a><span class="delimiter">/</span><a href="../index.html">ch.srgssr.pillarbox.analytics.commandersact</a><span class="delimiter">/</span><a href="index.html">CommandersActEvent</a><span class="delimiter">/</span><span class="current">CommandersActEvent</span></div>
<div class="cover ">
<h1 class="cover"><span>Commanders</span><wbr><span>Act</span><wbr><span><span>Event</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">constructor</span><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">name<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span></span><span class="parameter ">labels<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a><span class="token operator">&lt;</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">&gt;</span><span class="token operator"> = </span>emptyMap()</span></span><span class="token punctuation">)</span></div></div></div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
<!doctype html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>CommandersActEvent</title>
<link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async></script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script>
<link href="../../../styles/style.css" rel="Stylesheet">
<link href="../../../styles/main.css" rel="Stylesheet">
<link href="../../../styles/prism.css" rel="Stylesheet">
<link href="../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="../../../scripts/clipboard.js" async></script>
<script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script>
<script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script>
<script type="text/javascript" src="../../../scripts/main.js" defer></script>
<script type="text/javascript" src="../../../scripts/prism.js" async></script>
<script type="text/javascript" src="../../../ui-kit/ui-kit.min.js" async></script>
<script type="text/javascript" src="../../../scripts/symbol-parameters-wrapper_deferred.js" defer></script>
<link href="../../../styles/pillarbox.css" rel="Stylesheet"></head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="../../../index.html">
Pillarbox
</a> </div>
<div class="library-version">dev
</div>
</div>
<div class="filter-section" id="filter-section">
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":pillarbox-analytics/release">androidJvm</button>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" data-page-type="classlike" id="content" pageids="pillarbox-analytics::ch.srgssr.pillarbox.analytics.commandersact/CommandersActEvent///PointingToDeclaration//-920939245">
<div class="breadcrumbs"><a href="../../index.html">pillarbox-analytics</a><span class="delimiter">/</span><a href="../index.html">ch.srgssr.pillarbox.analytics.commandersact</a><span class="delimiter">/</span><span class="current">CommandersActEvent</span></div>
<div class="cover ">
<h1 class="cover"><span>Commanders</span><wbr><span>Act</span><wbr><span><span>Event</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">data </span><span class="token keyword">class </span><a href="index.html">CommandersActEvent</a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">val </span>name<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">val </span>labels<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a><span class="token operator">&lt;</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">&gt;</span><span class="token operator"> = </span>emptyMap()</span></span><span class="token punctuation">)</span></div><p class="paragraph">Represents an event to be sent to Commanders Act.</p><h4 class="">Throws</h4><div class="table"><div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release"><div class="main-subrow keyValue "><div class=""><span class="inline-flex"><div><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-argument-exception/index.html"><span>Illegal</span><wbr><span>Argument</span><wbr><span><span>Exception</span></span></a></div></span></div><div><div class="title"><p class="paragraph">If <a href="name.html">name</a> is blank.</p></div></div></div></div></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
<div class="tabs-section-body">
<div data-togglable="CONSTRUCTOR">
<h2 class="">Constructors</h2>
<div class="table"><a data-name="-474472897%2FConstructors%2F-920939245" anchor-label="CommandersActEvent" id="-474472897%2FConstructors%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-togglable="CONSTRUCTOR" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-commanders-act-event.html"><span>Commanders</span><wbr><span>Act</span><wbr><span><span>Event</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-474472897%2FConstructors%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">constructor</span><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">name<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span></span><span class="parameter ">labels<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a><span class="token operator">&lt;</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">&gt;</span><span class="token operator"> = </span>emptyMap()</span></span><span class="token punctuation">)</span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div data-togglable="PROPERTY">
<h2 class="">Properties</h2>
<div class="table"><a data-name="2088579354%2FProperties%2F-920939245" anchor-label="labels" id="2088579354%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="labels.html"><span><span>labels</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2088579354%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="labels.html">labels</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a><span class="token operator">&lt;</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">&gt;</span></div><div class="brief "><p class="paragraph">A map of custom labels associated with the event. Defaults to an empty map. Please discuss the expected values for your application with your measurement team.</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="475183886%2FProperties%2F-920939245" anchor-label="name" id="475183886%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="name.html"><span><span>name</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="475183886%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><p class="paragraph">The name of the event. Must not be blank.</p></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div data-togglable="FUNCTION">
<h2 class="">Functions</h2>
<div class="table"><a data-name="-1128118654%2FFunctions%2F-920939245" anchor-label="toTCCustomEvent" id="-1128118654%2FFunctions%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="to-t-c-custom-event.html"><span>to</span><wbr><span>TCCustom</span><wbr><span><span>Event</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1128118654%2FFunctions%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">fun </span><a href="to-t-c-custom-event.html"><span class="token function">toTCCustomEvent</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><span data-unresolved-link="com.tagcommander.lib.serverside.events/TCCustomEvent///PointingToDeclaration/">TCCustomEvent</span></div><div class="brief "><p class="paragraph">Converts this event into a <code class="lang-kotlin">TCCustomEvent</code>.</p></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!doctype html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>labels</title>
<link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async></script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script>
<link href="../../../styles/style.css" rel="Stylesheet">
<link href="../../../styles/main.css" rel="Stylesheet">
<link href="../../../styles/prism.css" rel="Stylesheet">
<link href="../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="../../../scripts/clipboard.js" async></script>
<script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script>
<script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script>
<script type="text/javascript" src="../../../scripts/main.js" defer></script>
<script type="text/javascript" src="../../../scripts/prism.js" async></script>
<script type="text/javascript" src="../../../ui-kit/ui-kit.min.js" async></script>
<script type="text/javascript" src="../../../scripts/symbol-parameters-wrapper_deferred.js" defer></script>
<link href="../../../styles/pillarbox.css" rel="Stylesheet"></head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="../../../index.html">
Pillarbox
</a> </div>
<div class="library-version">dev
</div>
</div>
<div class="filter-section" id="filter-section">
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":pillarbox-analytics/release">androidJvm</button>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" data-page-type="member" id="content" pageids="pillarbox-analytics::ch.srgssr.pillarbox.analytics.commandersact/CommandersActEvent/labels/#/PointingToDeclaration//-920939245">
<div class="breadcrumbs"><a href="../../index.html">pillarbox-analytics</a><span class="delimiter">/</span><a href="../index.html">ch.srgssr.pillarbox.analytics.commandersact</a><span class="delimiter">/</span><a href="index.html">CommandersActEvent</a><span class="delimiter">/</span><span class="current">labels</span></div>
<div class="cover ">
<h1 class="cover"><span><span>labels</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="labels.html">labels</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a><span class="token operator">&lt;</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">&gt;</span></div></div></div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!doctype html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>name</title>
<link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async></script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script>
<link href="../../../styles/style.css" rel="Stylesheet">
<link href="../../../styles/main.css" rel="Stylesheet">
<link href="../../../styles/prism.css" rel="Stylesheet">
<link href="../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="../../../scripts/clipboard.js" async></script>
<script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script>
<script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script>
<script type="text/javascript" src="../../../scripts/main.js" defer></script>
<script type="text/javascript" src="../../../scripts/prism.js" async></script>
<script type="text/javascript" src="../../../ui-kit/ui-kit.min.js" async></script>
<script type="text/javascript" src="../../../scripts/symbol-parameters-wrapper_deferred.js" defer></script>
<link href="../../../styles/pillarbox.css" rel="Stylesheet"></head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="../../../index.html">
Pillarbox
</a> </div>
<div class="library-version">dev
</div>
</div>
<div class="filter-section" id="filter-section">
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":pillarbox-analytics/release">androidJvm</button>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" data-page-type="member" id="content" pageids="pillarbox-analytics::ch.srgssr.pillarbox.analytics.commandersact/CommandersActEvent/name/#/PointingToDeclaration//-920939245">
<div class="breadcrumbs"><a href="../../index.html">pillarbox-analytics</a><span class="delimiter">/</span><a href="../index.html">ch.srgssr.pillarbox.analytics.commandersact</a><span class="delimiter">/</span><a href="index.html">CommandersActEvent</a><span class="delimiter">/</span><span class="current">name</span></div>
<div class="cover ">
<h1 class="cover"><span><span>name</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!doctype html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>toTCCustomEvent</title>
<link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async></script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script>
<link href="../../../styles/style.css" rel="Stylesheet">
<link href="../../../styles/main.css" rel="Stylesheet">
<link href="../../../styles/prism.css" rel="Stylesheet">
<link href="../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="../../../scripts/clipboard.js" async></script>
<script type="text/javascript" src="../../../scripts/navigation-loader.js" async></script>
<script type="text/javascript" src="../../../scripts/platform-content-handler.js" async></script>
<script type="text/javascript" src="../../../scripts/main.js" defer></script>
<script type="text/javascript" src="../../../scripts/prism.js" async></script>
<script type="text/javascript" src="../../../ui-kit/ui-kit.min.js" async></script>
<script type="text/javascript" src="../../../scripts/symbol-parameters-wrapper_deferred.js" defer></script>
<link href="../../../styles/pillarbox.css" rel="Stylesheet"></head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="../../../index.html">
Pillarbox
</a> </div>
<div class="library-version">dev
</div>
</div>
<div class="filter-section" id="filter-section">
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":pillarbox-analytics/release">androidJvm</button>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" data-page-type="member" id="content" pageids="pillarbox-analytics::ch.srgssr.pillarbox.analytics.commandersact/CommandersActEvent/toTCCustomEvent/#/PointingToDeclaration//-920939245">
<div class="breadcrumbs"><a href="../../index.html">pillarbox-analytics</a><span class="delimiter">/</span><a href="../index.html">ch.srgssr.pillarbox.analytics.commandersact</a><span class="delimiter">/</span><a href="index.html">CommandersActEvent</a><span class="delimiter">/</span><span class="current">toTCCustomEvent</span></div>
<div class="cover ">
<h1 class="cover"><span>to</span><wbr><span>TCCustom</span><wbr><span><span>Event</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">fun </span><a href="to-t-c-custom-event.html"><span class="token function">toTCCustomEvent</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><span data-unresolved-link="com.tagcommander.lib.serverside.events/TCCustomEvent///PointingToDeclaration/">TCCustomEvent</span></div><p class="paragraph">Converts this event into a <code class="lang-kotlin">TCCustomEvent</code>.</p><span class="kdoc-tag"><h4 class="">Return</h4><p class="paragraph">A <code class="lang-kotlin">TCCustomEvent</code> instance populated with data from this instance.</p></span></div></div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
<!doctype html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>CONSENT_SERVICES</title>
<link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../../";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async></script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script>
<link href="../../../../styles/style.css" rel="Stylesheet">
<link href="../../../../styles/main.css" rel="Stylesheet">
<link href="../../../../styles/prism.css" rel="Stylesheet">
<link href="../../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="../../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="../../../../scripts/clipboard.js" async></script>
<script type="text/javascript" src="../../../../scripts/navigation-loader.js" async></script>
<script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async></script>
<script type="text/javascript" src="../../../../scripts/main.js" defer></script>
<script type="text/javascript" src="../../../../scripts/prism.js" async></script>
<script type="text/javascript" src="../../../../ui-kit/ui-kit.min.js" async></script>
<script type="text/javascript" src="../../../../scripts/symbol-parameters-wrapper_deferred.js" defer></script>
<link href="../../../../styles/pillarbox.css" rel="Stylesheet"></head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="../../../../index.html">
Pillarbox
</a> </div>
<div class="library-version">dev
</div>
</div>
<div class="filter-section" id="filter-section">
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":pillarbox-analytics/release">androidJvm</button>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" data-page-type="classlike" id="content" pageids="pillarbox-analytics::ch.srgssr.pillarbox.analytics.commandersact/CommandersActLabels.CONSENT_SERVICES///PointingToDeclaration/{&quot;org.jetbrains.dokka.links.EnumEntryDRIExtra&quot;:{&quot;key&quot;:&quot;org.jetbrains.dokka.links.EnumEntryDRIExtra&quot;}}/-920939245">
<div class="breadcrumbs"><a href="../../../index.html">pillarbox-analytics</a><span class="delimiter">/</span><a href="../../index.html">ch.srgssr.pillarbox.analytics.commandersact</a><span class="delimiter">/</span><a href="../index.html">CommandersActLabels</a><span class="delimiter">/</span><span class="current">CONSENT_SERVICES</span></div>
<div class="cover ">
<h1 class="cover"><span>CONSENT_</span><wbr><span>SERVICES</span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><div class="block"><a href="index.html">CONSENT_SERVICES</a></div></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
<div class="tabs-section-body">
<div data-togglable="PROPERTY">
<h2 class="">Properties</h2>
<div class="table"><a data-name="-766034102%2FProperties%2F-920939245" anchor-label="label" id="-766034102%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../label.html"><span><span>label</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-766034102%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../label.html">label</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><p class="paragraph">The label used by Commanders Act.</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-372974862%2FProperties%2F-920939245" anchor-label="name" id="-372974862%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-372974862%2FProperties%2F-920939245"><span><span>name</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-372974862%2FProperties%2F-920939245">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-739389684%2FProperties%2F-920939245" anchor-label="ordinal" id="-739389684%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-739389684%2FProperties%2F-920939245"><span><span>ordinal</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-739389684%2FProperties%2F-920939245">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
<!doctype html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>EVENT_EXTRA_1</title>
<link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../../";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async></script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script>
<link href="../../../../styles/style.css" rel="Stylesheet">
<link href="../../../../styles/main.css" rel="Stylesheet">
<link href="../../../../styles/prism.css" rel="Stylesheet">
<link href="../../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="../../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="../../../../scripts/clipboard.js" async></script>
<script type="text/javascript" src="../../../../scripts/navigation-loader.js" async></script>
<script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async></script>
<script type="text/javascript" src="../../../../scripts/main.js" defer></script>
<script type="text/javascript" src="../../../../scripts/prism.js" async></script>
<script type="text/javascript" src="../../../../ui-kit/ui-kit.min.js" async></script>
<script type="text/javascript" src="../../../../scripts/symbol-parameters-wrapper_deferred.js" defer></script>
<link href="../../../../styles/pillarbox.css" rel="Stylesheet"></head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="../../../../index.html">
Pillarbox
</a> </div>
<div class="library-version">dev
</div>
</div>
<div class="filter-section" id="filter-section">
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":pillarbox-analytics/release">androidJvm</button>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" data-page-type="classlike" id="content" pageids="pillarbox-analytics::ch.srgssr.pillarbox.analytics.commandersact/CommandersActLabels.EVENT_EXTRA_1///PointingToDeclaration/{&quot;org.jetbrains.dokka.links.EnumEntryDRIExtra&quot;:{&quot;key&quot;:&quot;org.jetbrains.dokka.links.EnumEntryDRIExtra&quot;}}/-920939245">
<div class="breadcrumbs"><a href="../../../index.html">pillarbox-analytics</a><span class="delimiter">/</span><a href="../../index.html">ch.srgssr.pillarbox.analytics.commandersact</a><span class="delimiter">/</span><a href="../index.html">CommandersActLabels</a><span class="delimiter">/</span><span class="current">EVENT_EXTRA_1</span></div>
<div class="cover ">
<h1 class="cover"><span>EVENT_</span><wbr><span>EXTRA_</span><wbr><span>1</span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><div class="block"><a href="index.html">EVENT_EXTRA_1</a></div></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
<div class="tabs-section-body">
<div data-togglable="PROPERTY">
<h2 class="">Properties</h2>
<div class="table"><a data-name="-766034102%2FProperties%2F-920939245" anchor-label="label" id="-766034102%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../label.html"><span><span>label</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-766034102%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../label.html">label</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><p class="paragraph">The label used by Commanders Act.</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-372974862%2FProperties%2F-920939245" anchor-label="name" id="-372974862%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-372974862%2FProperties%2F-920939245"><span><span>name</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-372974862%2FProperties%2F-920939245">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-739389684%2FProperties%2F-920939245" anchor-label="ordinal" id="-739389684%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-739389684%2FProperties%2F-920939245"><span><span>ordinal</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-739389684%2FProperties%2F-920939245">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
<!doctype html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>EVENT_EXTRA_2</title>
<link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../../";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async></script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script>
<link href="../../../../styles/style.css" rel="Stylesheet">
<link href="../../../../styles/main.css" rel="Stylesheet">
<link href="../../../../styles/prism.css" rel="Stylesheet">
<link href="../../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="../../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="../../../../scripts/clipboard.js" async></script>
<script type="text/javascript" src="../../../../scripts/navigation-loader.js" async></script>
<script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async></script>
<script type="text/javascript" src="../../../../scripts/main.js" defer></script>
<script type="text/javascript" src="../../../../scripts/prism.js" async></script>
<script type="text/javascript" src="../../../../ui-kit/ui-kit.min.js" async></script>
<script type="text/javascript" src="../../../../scripts/symbol-parameters-wrapper_deferred.js" defer></script>
<link href="../../../../styles/pillarbox.css" rel="Stylesheet"></head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="../../../../index.html">
Pillarbox
</a> </div>
<div class="library-version">dev
</div>
</div>
<div class="filter-section" id="filter-section">
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":pillarbox-analytics/release">androidJvm</button>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" data-page-type="classlike" id="content" pageids="pillarbox-analytics::ch.srgssr.pillarbox.analytics.commandersact/CommandersActLabels.EVENT_EXTRA_2///PointingToDeclaration/{&quot;org.jetbrains.dokka.links.EnumEntryDRIExtra&quot;:{&quot;key&quot;:&quot;org.jetbrains.dokka.links.EnumEntryDRIExtra&quot;}}/-920939245">
<div class="breadcrumbs"><a href="../../../index.html">pillarbox-analytics</a><span class="delimiter">/</span><a href="../../index.html">ch.srgssr.pillarbox.analytics.commandersact</a><span class="delimiter">/</span><a href="../index.html">CommandersActLabels</a><span class="delimiter">/</span><span class="current">EVENT_EXTRA_2</span></div>
<div class="cover ">
<h1 class="cover"><span>EVENT_</span><wbr><span>EXTRA_</span><wbr><span>2</span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><div class="block"><a href="index.html">EVENT_EXTRA_2</a></div></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
<div class="tabs-section-body">
<div data-togglable="PROPERTY">
<h2 class="">Properties</h2>
<div class="table"><a data-name="-766034102%2FProperties%2F-920939245" anchor-label="label" id="-766034102%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../label.html"><span><span>label</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-766034102%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../label.html">label</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><p class="paragraph">The label used by Commanders Act.</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-372974862%2FProperties%2F-920939245" anchor-label="name" id="-372974862%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-372974862%2FProperties%2F-920939245"><span><span>name</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-372974862%2FProperties%2F-920939245">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-739389684%2FProperties%2F-920939245" anchor-label="ordinal" id="-739389684%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-739389684%2FProperties%2F-920939245"><span><span>ordinal</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-739389684%2FProperties%2F-920939245">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
<!doctype html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>EVENT_EXTRA_3</title>
<link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../../";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async></script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script>
<link href="../../../../styles/style.css" rel="Stylesheet">
<link href="../../../../styles/main.css" rel="Stylesheet">
<link href="../../../../styles/prism.css" rel="Stylesheet">
<link href="../../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="../../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="../../../../scripts/clipboard.js" async></script>
<script type="text/javascript" src="../../../../scripts/navigation-loader.js" async></script>
<script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async></script>
<script type="text/javascript" src="../../../../scripts/main.js" defer></script>
<script type="text/javascript" src="../../../../scripts/prism.js" async></script>
<script type="text/javascript" src="../../../../ui-kit/ui-kit.min.js" async></script>
<script type="text/javascript" src="../../../../scripts/symbol-parameters-wrapper_deferred.js" defer></script>
<link href="../../../../styles/pillarbox.css" rel="Stylesheet"></head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="../../../../index.html">
Pillarbox
</a> </div>
<div class="library-version">dev
</div>
</div>
<div class="filter-section" id="filter-section">
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":pillarbox-analytics/release">androidJvm</button>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" data-page-type="classlike" id="content" pageids="pillarbox-analytics::ch.srgssr.pillarbox.analytics.commandersact/CommandersActLabels.EVENT_EXTRA_3///PointingToDeclaration/{&quot;org.jetbrains.dokka.links.EnumEntryDRIExtra&quot;:{&quot;key&quot;:&quot;org.jetbrains.dokka.links.EnumEntryDRIExtra&quot;}}/-920939245">
<div class="breadcrumbs"><a href="../../../index.html">pillarbox-analytics</a><span class="delimiter">/</span><a href="../../index.html">ch.srgssr.pillarbox.analytics.commandersact</a><span class="delimiter">/</span><a href="../index.html">CommandersActLabels</a><span class="delimiter">/</span><span class="current">EVENT_EXTRA_3</span></div>
<div class="cover ">
<h1 class="cover"><span>EVENT_</span><wbr><span>EXTRA_</span><wbr><span>3</span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><div class="block"><a href="index.html">EVENT_EXTRA_3</a></div></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
<div class="tabs-section-body">
<div data-togglable="PROPERTY">
<h2 class="">Properties</h2>
<div class="table"><a data-name="-766034102%2FProperties%2F-920939245" anchor-label="label" id="-766034102%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../label.html"><span><span>label</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-766034102%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../label.html">label</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><p class="paragraph">The label used by Commanders Act.</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-372974862%2FProperties%2F-920939245" anchor-label="name" id="-372974862%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-372974862%2FProperties%2F-920939245"><span><span>name</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-372974862%2FProperties%2F-920939245">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-739389684%2FProperties%2F-920939245" anchor-label="ordinal" id="-739389684%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-739389684%2FProperties%2F-920939245"><span><span>ordinal</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-739389684%2FProperties%2F-920939245">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
<!doctype html>
<html class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>EVENT_EXTRA_4</title>
<link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../../";</script>
<script>document.documentElement.classList.replace("no-js","js");</script>
<script>const storage = localStorage.getItem("dokka-dark-mode")
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
</script>
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async></script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script>
<link href="../../../../styles/style.css" rel="Stylesheet">
<link href="../../../../styles/main.css" rel="Stylesheet">
<link href="../../../../styles/prism.css" rel="Stylesheet">
<link href="../../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../../styles/font-jb-sans-auto.css" rel="Stylesheet">
<link href="../../../../ui-kit/ui-kit.min.css" rel="Stylesheet">
<script type="text/javascript" src="../../../../scripts/clipboard.js" async></script>
<script type="text/javascript" src="../../../../scripts/navigation-loader.js" async></script>
<script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async></script>
<script type="text/javascript" src="../../../../scripts/main.js" defer></script>
<script type="text/javascript" src="../../../../scripts/prism.js" async></script>
<script type="text/javascript" src="../../../../ui-kit/ui-kit.min.js" async></script>
<script type="text/javascript" src="../../../../scripts/symbol-parameters-wrapper_deferred.js" defer></script>
<link href="../../../../styles/pillarbox.css" rel="Stylesheet"></head>
<body>
<div class="root">
<nav class="navigation" id="navigation-wrapper">
<div class="navigation--inner">
<div class="navigation-title">
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button>
<div class="library-name">
<a class="library-name--link" href="../../../../index.html">
Pillarbox
</a> </div>
<div class="library-version">dev
</div>
</div>
<div class="filter-section" id="filter-section">
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":pillarbox-analytics/release">androidJvm</button>
</div>
</div>
<div class="navigation-controls">
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button>
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div>
</div>
</nav>
<div id="container">
<div class="sidebar" id="leftColumn">
<div class="sidebar--inner" id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" data-page-type="classlike" id="content" pageids="pillarbox-analytics::ch.srgssr.pillarbox.analytics.commandersact/CommandersActLabels.EVENT_EXTRA_4///PointingToDeclaration/{&quot;org.jetbrains.dokka.links.EnumEntryDRIExtra&quot;:{&quot;key&quot;:&quot;org.jetbrains.dokka.links.EnumEntryDRIExtra&quot;}}/-920939245">
<div class="breadcrumbs"><a href="../../../index.html">pillarbox-analytics</a><span class="delimiter">/</span><a href="../../index.html">ch.srgssr.pillarbox.analytics.commandersact</a><span class="delimiter">/</span><a href="../index.html">CommandersActLabels</a><span class="delimiter">/</span><span class="current">EVENT_EXTRA_4</span></div>
<div class="cover ">
<h1 class="cover"><span>EVENT_</span><wbr><span>EXTRA_</span><wbr><span>4</span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><div class="block"><a href="index.html">EVENT_EXTRA_4</a></div></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
<div class="tabs-section-body">
<div data-togglable="PROPERTY">
<h2 class="">Properties</h2>
<div class="table"><a data-name="-766034102%2FProperties%2F-920939245" anchor-label="label" id="-766034102%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../label.html"><span><span>label</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-766034102%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../label.html">label</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><p class="paragraph">The label used by Commanders Act.</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-372974862%2FProperties%2F-920939245" anchor-label="name" id="-372974862%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-372974862%2FProperties%2F-920939245"><span><span>name</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-372974862%2FProperties%2F-920939245">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-739389684%2FProperties%2F-920939245" anchor-label="ordinal" id="-739389684%2FProperties%2F-920939245" data-filterable-set=":pillarbox-analytics/release"></a>
<div class="table-row" data-filterable-current=":pillarbox-analytics/release" data-filterable-set=":pillarbox-analytics/release">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-739389684%2FProperties%2F-920939245"><span><span>ordinal</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-920939245"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title">
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":pillarbox-analytics/release"><div class="symbol monospace"><span class="token keyword">val </span><a href="../../../ch.srgssr.pillarbox.analytics.comscore/-com-score-user-consent/-d-e-c-l-i-n-e-d/index.html#-739389684%2FProperties%2F-920939245">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="#content" id="go-to-top-link" class="footer--button footer--button_go-to-top"></a>
<span>© SRG SSR</span>
<span class="pull-right">
<span>Generated by </span>
<a class="footer--link footer--link_external" href="https://github.com/Kotlin/dokka">
<span>dokka</span>
</a>
</span>
</div>
</div>
</div>
</div>
</body>
</html>
Loading

0 comments on commit 9f0b3ab

Please sign in to comment.