Compare commits

..

30 Commits

Author SHA1 Message Date
514fd70e0c chore: prep for 2.3.3 release 2022-04-01 07:23:23 -06:00
26c481e1a4 fix: swagger ui regression from dependency bump 2022-04-01 09:21:50 -04:00
7a1e57f50c chore(deps): update dependency gradle to v7.4.2 (#235)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-31 20:00:17 +00:00
af9197e6b5 doc: Added Latest Documentation 2022-03-30 21:59:45 +00:00
ecd9415662 fix: nullable enum support (#234) 2022-03-30 21:47:13 +00:00
cbfdacb596 chore(deps): update kotestversion to v5.2.2 (#232)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-28 09:55:36 +00:00
ad2ccf92a1 chore(deps): update dependency org.webjars:swagger-ui to v4.9.1 (#231)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-27 14:42:04 +00:00
e520364785 chore(deps): update dependency org.webjars:swagger-ui to v4.8.1 (#230)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-24 13:48:51 +00:00
5de3939b9b chore(deps): update dependency org.webjars:swagger-ui to v4.8.0 (#229)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-23 09:48:13 +00:00
a3dfb09942 chore(deps): update endbug/add-and-commit action to v9 (#221) 2022-03-21 12:35:48 -04:00
6da21b0cbe chore(deps): update dependency joda-time:joda-time to v2.10.14 (#228)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-21 14:39:31 +00:00
f7473564b9 chore(deps): update dependency org.webjars:swagger-ui to v4.6.2 (#227)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-20 14:50:26 +00:00
6e3f310214 Update README.md 2022-03-16 06:47:05 -07:00
7c5f30ff50 chore(deps): update ktor to v1.6.8 (#225)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-15 12:52:25 +00:00
371424b3ce chore(deps): update dependency io.kotest:kotest-assertions-json-jvm to v5.2.1 (#223)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-14 12:34:22 +00:00
5ba5645201 chore(deps): update kotestversion to v5.2.0 (#222)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-13 20:07:41 +00:00
8b3444e647 chore(deps): update dependency gradle to v7.4.1 (#220)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-10 05:53:44 +00:00
66473203ba doc: Added Latest Documentation 2022-03-05 16:17:03 +00:00
5fe9fffdee fix: free form annotation can be applied to top level type (#219) 2022-03-05 16:10:30 +00:00
2364aaa754 chore(deps): update actions/checkout action to v3 (#216) 2022-03-04 07:50:02 -05:00
de877d9cbb doc: Added Latest Documentation 2022-03-01 17:55:51 +00:00
f742ea5485 chore: prep for 2.3.0 release 2022-03-01 12:49:27 -05:00
bae3a16e30 feat: Added SwaggerUI KTor Plugin (#215) 2022-03-01 12:47:51 -05:00
1355d4dd75 chore(deps): update dependency org.webjars:swagger-ui to v4.5.2 (#214)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-02-28 22:14:37 +00:00
b5b4795f4c chore(deps): update dependency org.apache.logging.log4j:log4j-api to v2.17.2 (#213)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-02-27 16:29:32 +00:00
d5dc41ccf5 chore(deps): update dependency org.apache.logging.log4j:log4j-core to v2.17.2 (#212)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-02-27 10:26:20 +00:00
d2dc18fd6a doc: Added Latest Documentation 2022-02-26 13:44:20 +00:00
a0770054ca chore: prep for 2.2.1 release 2022-02-26 08:37:04 -05:00
1d8e1bc60d fix: Support Maps with sealed class type (#211) 2022-02-26 07:47:17 -05:00
89ac0e19dd doc: Added Latest Documentation 2022-02-25 14:39:31 +00:00
26901 changed files with 1872275 additions and 85 deletions

View File

@ -4,7 +4,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
@ -18,7 +18,7 @@ jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:

View File

@ -11,7 +11,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'adopt'

View File

@ -11,7 +11,7 @@ jobs:
publish-to-nexus:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
@ -31,7 +31,7 @@ jobs:
needs:
- publish-to-nexus
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- uses: actions/setup-java@v3
@ -46,7 +46,7 @@ jobs:
properties: |
release=true
- name: Push New Documentation
uses: EndBug/add-and-commit@v8
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
new_branch: main

View File

@ -1,6 +1,7 @@
# Changelog
## Unreleased
### Added
### Changed
@ -11,10 +12,39 @@
## Released
## [2.3.3] - April 1st, 2022
### Added
- Added tests for Swagger UI module that verify that plugin generates correct responses for Swagger UI WEB resources (tests should detect future incompatible changes in new versions of `org.webjars.swagger-ui`)
### Changed
- Fixed broken Swagger UI plugin (`org.webjars.swagger-ui` WEB resources structure changed in version 4.9.X). Issue: https://github.com/bkbnio/kompendium/issues/236
## [2.3.2] - March 30th, 2022
### Changed
- Fixed bug where nullable enum fields caused runtime exceptions
## [2.3.1] - March 5th, 2022
### Changed
- Can now apply `@FreeFormObject` to top level types
## [2.3.0] - March 1st, 2022
### Added
- Brand new SwaggerUI support as a KTor plugin with WebJar under the hood and flexible configuration
### Changed
- Playground example `SwaggerPlaygound` now demonstrates new SwaggerUI KTor plugin usage (including OAuth security)
### Remove
- Deprecated Swagger Webjar approach was removed from codebase
## [2.2.1] - February 26th, 2022
- Fix to support sealed class typed Maps
## [2.2.0] - February 25th, 2022
### Changed
- Fixed support Location classes located in other non-location classes
- Fixed formatting of a custom SimpleSchema
- Fixed formatting of a custom `SimpleSchema`
- Multipart form-data multiple file request support
## [2.1.1] - February 19th, 2022

View File

@ -16,6 +16,8 @@ Kompendium is intended to be a minimally invasive OpenApi Specification generato
that users will use only Ktor native functions when implementing their API, and will supplement with Kompendium code in
order to generate the appropriate spec.
🚨 Kompendium _only_ supports Ktor 1.x
## How to install
Kompendium publishes all releases to Maven Central. As such, using the release versions of `Kompendium` is as simple as

View File

@ -0,0 +1,4 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.2496 5.3C20.3496 4.5 19.2496 4 18.0496 4C16.8496 4 15.6496 4.5 14.8496 5.3L10.3496 9.8L11.7496 11.2L16.2496 6.7C17.2496 5.7 18.8496 5.7 19.8496 6.7C20.8496 7.7 20.8496 9.3 19.8496 10.3L15.3496 14.8L16.7496 16.2L21.2496 11.7C22.1496 10.8 22.5496 9.7 22.5496 8.5C22.5496 7.3 22.1496 6.2 21.2496 5.3Z" fill="#637282"/>
<path d="M8.35 16.7998C7.35 17.7998 5.75 17.7998 4.75 16.7998C3.75 15.7998 3.75 14.1998 4.75 13.1998L9.25 8.6998L7.85 7.2998L3.35 11.7998C1.55 13.5998 1.55 16.3998 3.35 18.1998C4.25 19.0998 5.35 19.4998 6.55 19.4998C7.75 19.4998 8.85 19.0998 9.75 18.1998L14.25 13.6998L12.85 12.2998L8.35 16.7998Z" fill="#637282"/>
</svg>

After

Width:  |  Height:  |  Size: 754 B

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="-5 -3 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11 9l-6 5.25V3.75z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 160 B

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 4H15V16H5V4ZM17 7H19V18V20H17H8V18H17V7Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 215 B

View File

@ -0,0 +1,3 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 9C18 14 14 18 9 18C4 18 0 14 0 9C0 4 4 0 9 0C14 0 18 4 18 9ZM14.2 6.2L12.8 4.8L7.5 10.1L5.3 7.8L3.8 9.2L7.5 13L14.2 6.2Z" fill="#4DBB5F"/>
</svg>

After

Width:  |  Height:  |  Size: 258 B

View File

@ -0,0 +1,3 @@
<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 0H2.3949L4.84076 2.44586L0 7.28662L0.713376 8L5.55414 3.15924L8 5.6051V0Z" fill="#637282"/>
</svg>

After

Width:  |  Height:  |  Size: 206 B

View File

@ -0,0 +1,4 @@
<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.3337 9.66683H0.666992L6.00033 3.66683L11.3337 9.66683Z" fill="#637282"/>
<path d="M0.666992 0.333496H11.3337V1.66683H0.666992V0.333496Z" fill="#637282"/>
</svg>

After

Width:  |  Height:  |  Size: 277 B

View File

@ -0,0 +1,10 @@
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M64 64H0V0H64L31.3373 31.5369L64 64Z" fill="url(#paint0_radial)"/>
<defs>
<radialGradient id="paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(61.8732 2.63097) scale(73.3111)">
<stop offset="0.00343514" stop-color="#EF4857"/>
<stop offset="0.4689" stop-color="#D211EC"/>
<stop offset="1" stop-color="#7F52FF"/>
</radialGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 558 B

View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
<path fill="white" fill-rule="evenodd" clip-rule="evenodd"
d="M0 9a9 9 0 1018 0A9 9 0 000 9zm16 0a7 7 0 01-7 7V2a7 7 0 017 7z" transform="translate(3, 3)"></path>
</svg>

After

Width:  |  Height:  |  Size: 247 B

140
docs/2.2.0/index.html Normal file
View File

@ -0,0 +1,140 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>All modules</title>
<link href="images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "";</script> <script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
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/jetbrains-mono.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"><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><link href="styles/multimodule.css" rel="Stylesheet"> </head>
<body>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="index.html">kompendium</a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="older/2.1.1/index.html">2.1.1</a><a href="older/2.1.0/index.html">2.1.0</a><a href="older/2.0.4/index.html">2.0.4</a><a href="older/2.0.3/index.html">2.0.3</a><a href="older/2.0.2/index.html">2.0.2</a><a href="older/2.0.1/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageIds="kompendium::.ext/allModules///PointingToDeclaration//0">
<div class="breadcrumbs"></div>
<div class="cover ">
<div class="cover ">
<h1 class="">Kompendium</h1>
<p class="paragraph">Welcome to Kompendium, the straight-forward, minimally-invasive OpenAPI generator for Ktor. </p>
<h2 class=""> How to install</h2>
<p class="paragraph">Kompendium publishes all releases to Maven Central. As such, using the release versions of <code class="lang-kotlin">Kompendium</code> is as simple as declaring it as an implementation dependency in your <code class="lang-kotlin">build.gradle.kts</code></p>
<div class="sample-container">
<pre><code class="block lang-kotlin" theme="idea">repositories {<br> mavenCentral()<br>}<br><br>dependencies {<br> implementation(&quot;io.bkbn:kompendium-core:latest.release&quot;)<br>}</code></pre>
<span class="top-right-position"><span class="copy-icon"></span>
<div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div>
</span></div>
<p class="paragraph">In addition to publishing releases to Maven Central, a snapshot version gets published to GitHub Packages on every merge to <code class="lang-kotlin">main</code>. These can be consumed by adding the repository to your gradle build file. Instructions can be found <a href="https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry#using-a-published-package">here</a></p>
<h2 class=""> Setting up the Kompendium Plugin</h2>
<p class="paragraph">Kompendium is instantiated as a Ktor Feature/Plugin. It can be added to your API as follows</p>
<div class="sample-container">
<pre><code class="block lang-kotlin" theme="idea">private fun Application.mainModule() {<br> // Installs the Kompendium Plugin and sets up baseline server metadata<br> install(Kompendium) {<br> spec = OpenApiSpec(/*..*/)<br> }<br> // ...<br>}</code></pre>
<span class="top-right-position"><span class="copy-icon"></span>
<div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div>
</span></div>
<h2 class=""> Notarization</h2>
<p class="paragraph">The concept of notarizing routes / exceptions / etc. is central to Kompendium. More details on <i>how</i> to notarize your API can be found in the kompendium-core module.</p>
</div>
<h2 class="">All modules:</h2>
<div class="table"><a data-name="1162350513%2FMain%2F0" anchor-label="kompendium-annotations" id="1162350513%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="kompendium-annotations/index.html">kompendium-annotations</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1162350513%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">This module houses all annotations that Kompendium uses to provide key metadata when performing reflective analysis. </p>
</span></div>
</div>
</div>
<a data-name="1574642149%2FMain%2F0" anchor-label="kompendium-auth" id="1574642149%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="kompendium-auth/index.html">kompendium-auth</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1574642149%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">This module is responsible for providing wrappers around ktor-auth configuration blocks, allowing users to document their API authentication with minimal modifications to their existing configuration.</p>
</span></div>
</div>
</div>
<a data-name="-1821989938%2FMain%2F0" anchor-label="kompendium-core" id="-1821989938%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="kompendium-core/index.html">kompendium-core</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1821989938%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">This is where the magic happens. This module houses all the reflective goodness that powers Kompendium.</p>
</span></div>
</div>
</div>
<a data-name="-960478793%2FMain%2F0" anchor-label="kompendium-locations" id="-960478793%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="kompendium-locations/index.html">kompendium-locations</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-960478793%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">Adds support for Ktor <a href="https://ktor.io/docs/locations.html">Locations</a> API. Any notarized location <i>must</i> be provided with a <code class="lang-kotlin">TParam</code> annotated with <code class="lang-kotlin">@Location</code>. Nested Locations are supported</p>
</span></div>
</div>
</div>
<a data-name="926400660%2FMain%2F0" anchor-label="kompendium-oas" id="926400660%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="kompendium-oas/index.html">kompendium-oas</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="926400660%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">This module contains the models that represent the Open Api Specification 3.0 (OAS).</p>
</span></div>
</div>
</div>
<a data-name="-1622380618%2FMain%2F0" anchor-label="kompendium-swagger-ui" id="-1622380618%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="kompendium-swagger-ui/index.html">kompendium-swagger-ui</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1622380618%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">Contains the code necessary to launch <code class="lang-kotlin">swagger</code> as your documentation frontend.</p>
</span></div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,77 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>kompendium-annotations</title>
</head><body><link href="../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../";</script>
<script type="text/javascript" src="../scripts/sourceset_dependencies.js" async></script><link href="../styles/style.css" rel="Stylesheet"><link href="../styles/jetbrains-mono.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"><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><link href="../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../older/2.1.1/kompendium-annotations/index.html">2.1.1</a><a href="../older/2.1.0/kompendium-annotations/index.html">2.1.0</a><a href="../older/2.0.4/kompendium-annotations/index.html">2.0.4</a><a href="../older/2.0.3/kompendium-annotations/index.html">2.0.3</a><a href="../older/2.0.2/kompendium-annotations/index.html">2.0.2</a><a href="../older/2.0.1/kompendium-annotations/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::////PointingToDeclaration//-1155457116">
<div class="breadcrumbs"></div>
<div class="cover ">
<h1 class="cover"><span><span>kompendium-annotations</span></span></h1>
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><p class="paragraph">This module houses all annotations that Kompendium uses to provide key metadata when performing reflective analysis. </p><p class="paragraph">It is separated from core predominantly to allow for potential future integrations with <a href="https://github.com/google/ksp">Kotlin Symbol Processing</a></p></div></div>
</div>
<h2 class="">Packages</h2>
<div class="table"><a data-name="-1446117290%2FPackages%2F-1155457116" anchor-label="io.bkbn.kompendium.annotations" id="-1446117290%2FPackages%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.annotations/index.html">io.bkbn.kompendium.annotations</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1446117290%2FPackages%2F-1155457116"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div><span class="brief-comment"><a data-name="-1446117290%2FPackages%2F-1155457116" anchor-label="io.bkbn.kompendium.annotations" id="-1446117290%2FPackages%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<p class="paragraph">Contains all annotations used by Kompendium</p>
</span></div>
</div>
</div>
<a data-name="1495666105%2FPackages%2F-1155457116" anchor-label="io.bkbn.kompendium.annotations.constraint" id="1495666105%2FPackages%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.annotations.constraint/index.html">io.bkbn.kompendium.annotations.constraint</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1495666105%2FPackages%2F-1155457116"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div><span class="brief-comment"><a data-name="1495666105%2FPackages%2F-1155457116" anchor-label="io.bkbn.kompendium.annotations.constraint" id="1495666105%2FPackages%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<p class="paragraph">Annotations that place bespoke constraints on individual fields of your API schemas.</p>
</span></div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Format</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-format/-format.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-format.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/-format.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/-format.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/-format.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/-format.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/-format.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/-format.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Format/Format/#kotlin.String/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Format</a>/<a href="-format.html">Format</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Format</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-format.html"><span class="token function">Format</span></a><span class="token punctuation">(</span>format<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>format</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-format/format.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="format.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/format.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/format.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/format.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/format.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/format.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/format.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Format/format/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Format</a>/<a href="format.html">format</a></div>
<div class="cover ">
<h1 class="cover"><span><span>format</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="format.html">format</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Format</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-format/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Format///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Format</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Format</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a><span class="token punctuation">, </span></span><wbr><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-t-y-p-e/index.html">AnnotationTarget.TYPE</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Format</a><span class="token punctuation">(</span>format<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-1740241114%2FProperties%2F-1155457116" anchor-label="format" id="-1740241114%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="format.html">format</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1740241114%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1740241114%2FProperties%2F-1155457116" anchor-label="format" id="-1740241114%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="format.html">format</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MaxItems</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-max-items/-max-items.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-max-items.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/-max-items.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/-max-items.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/-max-items.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/-max-items.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/-max-items.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/-max-items.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxItems/MaxItems/#kotlin.Int/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxItems</a>/<a href="-max-items.html">MaxItems</a></div>
<div class="cover ">
<h1 class="cover"><span>Max</span><wbr><span><span>Items</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-max-items.html"><span class="token function">MaxItems</span></a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MaxItems</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-max-items/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxItems///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxItems</a></div>
<div class="cover ">
<h1 class="cover"><span>Max</span><wbr><span><span>Items</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MaxItems</a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-1673031400%2FProperties%2F-1155457116" anchor-label="items" id="-1673031400%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="items.html">items</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1673031400%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1673031400%2FProperties%2F-1155457116" anchor-label="items" id="-1673031400%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="items.html">items</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>items</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-max-items/items.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="items.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/items.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/items.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/items.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/items.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/items.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/items.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxItems/items/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxItems</a>/<a href="items.html">items</a></div>
<div class="cover ">
<h1 class="cover"><span><span>items</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="items.html">items</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MaxLength</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-max-length/-max-length.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-max-length.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/-max-length.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/-max-length.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/-max-length.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/-max-length.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/-max-length.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/-max-length.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxLength/MaxLength/#kotlin.Int/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxLength</a>/<a href="-max-length.html">MaxLength</a></div>
<div class="cover ">
<h1 class="cover"><span>Max</span><wbr><span><span>Length</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-max-length.html"><span class="token function">MaxLength</span></a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MaxLength</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-max-length/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxLength///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxLength</a></div>
<div class="cover ">
<h1 class="cover"><span>Max</span><wbr><span><span>Length</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MaxLength</a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-1027251622%2FProperties%2F-1155457116" anchor-label="length" id="-1027251622%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="length.html">length</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1027251622%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1027251622%2FProperties%2F-1155457116" anchor-label="length" id="-1027251622%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="length.html">length</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>length</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-max-length/length.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="length.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/length.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/length.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/length.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/length.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/length.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/length.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxLength/length/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxLength</a>/<a href="length.html">length</a></div>
<div class="cover ">
<h1 class="cover"><span><span>length</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="length.html">length</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MaxProperties</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-max-properties/-max-properties.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-max-properties.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/-max-properties.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/-max-properties.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/-max-properties.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/-max-properties.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/-max-properties.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/-max-properties.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxProperties/MaxProperties/#kotlin.Int/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxProperties</a>/<a href="-max-properties.html">MaxProperties</a></div>
<div class="cover ">
<h1 class="cover"><span>Max</span><wbr><span><span>Properties</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-max-properties.html"><span class="token function">MaxProperties</span></a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MaxProperties</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-max-properties/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxProperties///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxProperties</a></div>
<div class="cover ">
<h1 class="cover"><span>Max</span><wbr><span><span>Properties</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MaxProperties</a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="1576947962%2FProperties%2F-1155457116" anchor-label="properties" id="1576947962%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="properties.html">properties</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1576947962%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="1576947962%2FProperties%2F-1155457116" anchor-label="properties" id="1576947962%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="properties.html">properties</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>properties</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-max-properties/properties.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="properties.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/properties.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/properties.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/properties.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/properties.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/properties.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/properties.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxProperties/properties/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MaxProperties</a>/<a href="properties.html">properties</a></div>
<div class="cover ">
<h1 class="cover"><span><span>properties</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="properties.html">properties</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Maximum</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-maximum/-maximum.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-maximum.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/-maximum.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/-maximum.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/-maximum.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/-maximum.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/-maximum.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/-maximum.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum/Maximum/#kotlin.String#kotlin.Boolean/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Maximum</a>/<a href="-maximum.html">Maximum</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Maximum</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-maximum.html"><span class="token function">Maximum</span></a><span class="token punctuation">(</span>max<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>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>exclusive</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-maximum/exclusive.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="exclusive.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/exclusive.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/exclusive.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/exclusive.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/exclusive.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/exclusive.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/exclusive.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum/exclusive/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Maximum</a>/<a href="exclusive.html">exclusive</a></div>
<div class="cover ">
<h1 class="cover"><span><span>exclusive</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="exclusive.html">exclusive</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,80 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Maximum</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-maximum/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Maximum</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Maximum</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Maximum</a><span class="token punctuation">(</span>max<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>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-445488442%2FProperties%2F-1155457116" anchor-label="exclusive" id="-445488442%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="exclusive.html">exclusive</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-445488442%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-445488442%2FProperties%2F-1155457116" anchor-label="exclusive" id="-445488442%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="exclusive.html">exclusive</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-947044352%2FProperties%2F-1155457116" anchor-label="max" id="-947044352%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="max.html">max</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-947044352%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-947044352%2FProperties%2F-1155457116" anchor-label="max" id="-947044352%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="max.html">max</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>max</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-maximum/max.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="max.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/max.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/max.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/max.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/max.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/max.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/max.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum/max/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Maximum</a>/<a href="max.html">max</a></div>
<div class="cover ">
<h1 class="cover"><span><span>max</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="max.html">max</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MinItems</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-min-items/-min-items.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-min-items.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/-min-items.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/-min-items.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/-min-items.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/-min-items.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/-min-items.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/-min-items.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinItems/MinItems/#kotlin.Int/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinItems</a>/<a href="-min-items.html">MinItems</a></div>
<div class="cover ">
<h1 class="cover"><span>Min</span><wbr><span><span>Items</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-min-items.html"><span class="token function">MinItems</span></a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MinItems</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-min-items/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinItems///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinItems</a></div>
<div class="cover ">
<h1 class="cover"><span>Min</span><wbr><span><span>Items</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MinItems</a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-498191610%2FProperties%2F-1155457116" anchor-label="items" id="-498191610%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="items.html">items</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-498191610%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-498191610%2FProperties%2F-1155457116" anchor-label="items" id="-498191610%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="items.html">items</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>items</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-min-items/items.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="items.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/items.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/items.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/items.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/items.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/items.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/items.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinItems/items/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinItems</a>/<a href="items.html">items</a></div>
<div class="cover ">
<h1 class="cover"><span><span>items</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="items.html">items</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MinLength</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-min-length/-min-length.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-min-length.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/-min-length.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/-min-length.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/-min-length.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/-min-length.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/-min-length.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/-min-length.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinLength/MinLength/#kotlin.Int/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinLength</a>/<a href="-min-length.html">MinLength</a></div>
<div class="cover ">
<h1 class="cover"><span>Min</span><wbr><span><span>Length</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-min-length.html"><span class="token function">MinLength</span></a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MinLength</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-min-length/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinLength///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinLength</a></div>
<div class="cover ">
<h1 class="cover"><span>Min</span><wbr><span><span>Length</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MinLength</a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-1582612280%2FProperties%2F-1155457116" anchor-label="length" id="-1582612280%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="length.html">length</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1582612280%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1582612280%2FProperties%2F-1155457116" anchor-label="length" id="-1582612280%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="length.html">length</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>length</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-min-length/length.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="length.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/length.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/length.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/length.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/length.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/length.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/length.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinLength/length/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinLength</a>/<a href="length.html">length</a></div>
<div class="cover ">
<h1 class="cover"><span><span>length</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="length.html">length</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MinProperties</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-min-properties/-min-properties.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-min-properties.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/-min-properties.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/-min-properties.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/-min-properties.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/-min-properties.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/-min-properties.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/-min-properties.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinProperties/MinProperties/#kotlin.Int/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinProperties</a>/<a href="-min-properties.html">MinProperties</a></div>
<div class="cover ">
<h1 class="cover"><span>Min</span><wbr><span><span>Properties</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-min-properties.html"><span class="token function">MinProperties</span></a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MinProperties</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-min-properties/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinProperties///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinProperties</a></div>
<div class="cover ">
<h1 class="cover"><span>Min</span><wbr><span><span>Properties</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MinProperties</a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-1785863832%2FProperties%2F-1155457116" anchor-label="properties" id="-1785863832%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="properties.html">properties</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1785863832%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1785863832%2FProperties%2F-1155457116" anchor-label="properties" id="-1785863832%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="properties.html">properties</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>properties</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-min-properties/properties.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="properties.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/properties.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/properties.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/properties.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/properties.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/properties.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/properties.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinProperties/properties/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MinProperties</a>/<a href="properties.html">properties</a></div>
<div class="cover ">
<h1 class="cover"><span><span>properties</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="properties.html">properties</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Minimum</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-minimum/-minimum.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-minimum.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/-minimum.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/-minimum.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/-minimum.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/-minimum.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/-minimum.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/-minimum.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum/Minimum/#kotlin.String#kotlin.Boolean/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Minimum</a>/<a href="-minimum.html">Minimum</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Minimum</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-minimum.html"><span class="token function">Minimum</span></a><span class="token punctuation">(</span>min<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>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>exclusive</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-minimum/exclusive.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="exclusive.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/exclusive.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/exclusive.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/exclusive.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/exclusive.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/exclusive.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/exclusive.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum/exclusive/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Minimum</a>/<a href="exclusive.html">exclusive</a></div>
<div class="cover ">
<h1 class="cover"><span><span>exclusive</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="exclusive.html">exclusive</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,80 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Minimum</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-minimum/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Minimum</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Minimum</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Minimum</a><span class="token punctuation">(</span>min<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>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-481799656%2FProperties%2F-1155457116" anchor-label="exclusive" id="-481799656%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="exclusive.html">exclusive</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-481799656%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-481799656%2FProperties%2F-1155457116" anchor-label="exclusive" id="-481799656%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="exclusive.html">exclusive</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="1394662308%2FProperties%2F-1155457116" anchor-label="min" id="1394662308%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="min.html">min</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1394662308%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="1394662308%2FProperties%2F-1155457116" anchor-label="min" id="1394662308%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="min.html">min</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>min</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-minimum/min.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="min.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/min.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/min.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/min.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/min.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/min.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/min.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum/min/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Minimum</a>/<a href="min.html">min</a></div>
<div class="cover ">
<h1 class="cover"><span><span>min</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="min.html">min</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MultipleOf</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-multiple-of/-multiple-of.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-multiple-of.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/-multiple-of.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/-multiple-of.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/-multiple-of.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/-multiple-of.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/-multiple-of.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/-multiple-of.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MultipleOf/MultipleOf/#kotlin.String/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MultipleOf</a>/<a href="-multiple-of.html">MultipleOf</a></div>
<div class="cover ">
<h1 class="cover"><span>Multiple</span><wbr><span><span>Of</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-multiple-of.html"><span class="token function">MultipleOf</span></a><span class="token punctuation">(</span>multiple<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MultipleOf</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MultipleOf///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MultipleOf</a></div>
<div class="cover ">
<h1 class="cover"><span>Multiple</span><wbr><span><span>Of</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">MultipleOf</a><span class="token punctuation">(</span>multiple<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-130467011%2FProperties%2F-1155457116" anchor-label="multiple" id="-130467011%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="multiple.html">multiple</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-130467011%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-130467011%2FProperties%2F-1155457116" anchor-label="multiple" id="-130467011%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="multiple.html">multiple</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>multiple</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-multiple-of/multiple.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="multiple.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/multiple.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/multiple.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/multiple.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/multiple.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/multiple.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/multiple.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MultipleOf/multiple/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">MultipleOf</a>/<a href="multiple.html">multiple</a></div>
<div class="cover ">
<h1 class="cover"><span><span>multiple</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="multiple.html">multiple</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Pattern</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-pattern/-pattern.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-pattern.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/-pattern.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/-pattern.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/-pattern.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/-pattern.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/-pattern.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/-pattern.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Pattern/Pattern/#kotlin.String/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Pattern</a>/<a href="-pattern.html">Pattern</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Pattern</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-pattern.html"><span class="token function">Pattern</span></a><span class="token punctuation">(</span>pattern<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Pattern</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-pattern/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Pattern///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Pattern</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Pattern</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Pattern</a><span class="token punctuation">(</span>pattern<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-537571228%2FProperties%2F-1155457116" anchor-label="pattern" id="-537571228%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="pattern.html">pattern</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-537571228%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-537571228%2FProperties%2F-1155457116" anchor-label="pattern" id="-537571228%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="pattern.html">pattern</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>pattern</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-pattern/pattern.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="pattern.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/pattern.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/pattern.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/pattern.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/pattern.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/pattern.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/pattern.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Pattern/pattern/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">Pattern</a>/<a href="pattern.html">pattern</a></div>
<div class="cover ">
<h1 class="cover"><span><span>pattern</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="pattern.html">pattern</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>UniqueItems</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-unique-items/-unique-items.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-unique-items.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/-unique-items.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/-unique-items.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/-unique-items.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/-unique-items.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/-unique-items.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/-unique-items.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/UniqueItems/UniqueItems/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">UniqueItems</a>/<a href="-unique-items.html">UniqueItems</a></div>
<div class="cover ">
<h1 class="cover"><span>Unique</span><wbr><span><span>Items</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-unique-items.html"><span class="token function">UniqueItems</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,47 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>UniqueItems</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/-unique-items/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/UniqueItems///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations.constraint</a>/<a href="index.html">UniqueItems</a></div>
<div class="cover ">
<h1 class="cover"><span>Unique</span><wbr><span><span>Items</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">UniqueItems</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"></div>
<div class="tabs-section-body"></div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,230 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>io.bkbn.kompendium.annotations.constraint</title>
</head><body><link href="../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../";</script>
<script type="text/javascript" src="../../scripts/sourceset_dependencies.js" async></script><link href="../../styles/style.css" rel="Stylesheet"><link href="../../styles/jetbrains-mono.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"><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><link href="../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations.constraint/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/index.html">2.1.1</a><a href="../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/index.html">2.1.0</a><a href="../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/index.html">2.0.4</a><a href="../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/index.html">2.0.3</a><a href="../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/index.html">2.0.2</a><a href="../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations.constraint/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations.constraint////PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../index.html">kompendium-annotations</a>/<a href="index.html">io.bkbn.kompendium.annotations.constraint</a></div>
<div class="cover ">
<h1 class="cover"><span>Package io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>annotations.</span><wbr><span>constraint</span></h1>
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><p class="paragraph">Annotations that place bespoke constraints on individual fields of your API schemas.</p></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Types">Types</button></div>
<div class="tabs-section-body">
<h2 class="">Types</h2>
<div class="table" data-togglable="Types"><a data-name="-287679614%2FClasslikes%2F-1155457116" anchor-label="Format" id="-287679614%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-format/index.html"><span><span>Format</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-287679614%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a><span class="token punctuation">, </span></span><wbr><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-t-y-p-e/index.html">AnnotationTarget.TYPE</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-format/index.html">Format</a><span class="token punctuation">(</span>format<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="1392773033%2FClasslikes%2F-1155457116" anchor-label="Maximum" id="1392773033%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-maximum/index.html"><span><span>Maximum</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1392773033%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-maximum/index.html">Maximum</a><span class="token punctuation">(</span>max<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>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="120619101%2FClasslikes%2F-1155457116" anchor-label="MaxItems" id="120619101%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-max-items/index.html"><span>Max</span><wbr><span><span>Items</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="120619101%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-max-items/index.html">MaxItems</a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="42560927%2FClasslikes%2F-1155457116" anchor-label="MaxLength" id="42560927%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-max-length/index.html"><span>Max</span><wbr><span><span>Length</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="42560927%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-max-length/index.html">MaxLength</a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-1620807182%2FClasslikes%2F-1155457116" anchor-label="MaxProperties" id="-1620807182%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-max-properties/index.html"><span>Max</span><wbr><span><span>Properties</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1620807182%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-max-properties/index.html">MaxProperties</a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-208956037%2FClasslikes%2F-1155457116" anchor-label="Minimum" id="-208956037%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-minimum/index.html"><span><span>Minimum</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-208956037%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-minimum/index.html">Minimum</a><span class="token punctuation">(</span>min<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>exclusive<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="2006625483%2FClasslikes%2F-1155457116" anchor-label="MinItems" id="2006625483%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-min-items/index.html"><span>Min</span><wbr><span><span>Items</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2006625483%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-min-items/index.html">MinItems</a><span class="token punctuation">(</span>items<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-1620783375%2FClasslikes%2F-1155457116" anchor-label="MinLength" id="-1620783375%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-min-length/index.html"><span>Min</span><wbr><span><span>Length</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1620783375%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-min-length/index.html">MinLength</a><span class="token punctuation">(</span>length<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-1305814460%2FClasslikes%2F-1155457116" anchor-label="MinProperties" id="-1305814460%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-min-properties/index.html"><span>Min</span><wbr><span><span>Properties</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1305814460%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-min-properties/index.html">MinProperties</a><span class="token punctuation">(</span>properties<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-938498702%2FClasslikes%2F-1155457116" anchor-label="MultipleOf" id="-938498702%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-multiple-of/index.html"><span>Multiple</span><wbr><span><span>Of</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-938498702%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-multiple-of/index.html">MultipleOf</a><span class="token punctuation">(</span>multiple<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="2125385785%2FClasslikes%2F-1155457116" anchor-label="Pattern" id="2125385785%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-pattern/index.html"><span><span>Pattern</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2125385785%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-pattern/index.html">Pattern</a><span class="token punctuation">(</span>pattern<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-373771718%2FClasslikes%2F-1155457116" anchor-label="UniqueItems" id="-373771718%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-unique-items/index.html"><span>Unique</span><wbr><span><span>Items</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-373771718%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-unique-items/index.html">UniqueItems</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Field</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-field/-field.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-field.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-field/-field.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-field/-field.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-field/-field.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-field/-field.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-field/-field.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-field/-field.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Field/Field/#kotlin.String#kotlin.String/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Field</a>/<a href="-field.html">Field</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Field</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-field.html"><span class="token function">Field</span></a><span class="token punctuation">(</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 operator"> = </span><span class="token string">""</span><span class="token punctuation">, </span>description<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator"> = </span><span class="token string">""</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><h2 class="">Parameters</h2><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>name</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Indicates that a field name override is desired. Often used for camel case to snake case conversions.</p></div></div></div></div></div></div></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>description</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-field/description.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="description.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-field/description.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-field/description.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-field/description.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-field/description.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-field/description.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-field/description.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Field/description/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Field</a>/<a href="description.html">description</a></div>
<div class="cover ">
<h1 class="cover"><span><span>description</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="description.html">description</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,101 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Field</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-field/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-field/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-field/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-field/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-field/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-field/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-field/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Field///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Field</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Field</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Field</a><span class="token punctuation">(</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>description<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">Annotation used to perform field level overrides.</p></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Constructors">Constructors</button><button class="section-tab" data-togglable="Properties">Properties</button><button class="section-tab" data-togglable="Parameters">Parameters</button></div>
<div class="tabs-section-body">
<h2 class="">Parameters</h2>
<div data-togglable="Parameters">
<div class="platform-hinted WithExtraAttributes" data-platform-hinted="data-platform-hinted" data-togglable="Parameters"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>name</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Indicates that a field name override is desired. Often used for camel case to snake case conversions.</p></div></div></div></div></div></div></div></div></div>
</div>
<h2 class="tabbedcontent">Constructors</h2>
<div class="table" data-togglable="Constructors"><a data-name="-483896746%2FConstructors%2F-1155457116" anchor-label="Field" id="-483896746%2FConstructors%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue TabbedContent">
<div class=""><span class="inline-flex">
<div><a href="-field.html"><span><span>Field</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-483896746%2FConstructors%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-field.html"><span class="token function">Field</span></a><span class="token punctuation">(</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 operator"> = </span><span class="token string">""</span><span class="token punctuation">, </span>description<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator"> = </span><span class="token string">""</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-668984367%2FProperties%2F-1155457116" anchor-label="description" id="-668984367%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="description.html">description</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-668984367%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-668984367%2FProperties%2F-1155457116" anchor-label="description" id="-668984367%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="description.html">description</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-1242807038%2FProperties%2F-1155457116" anchor-label="name" id="-1242807038%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="name.html">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1242807038%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1242807038%2FProperties%2F-1155457116" anchor-label="name" id="-1242807038%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><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><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>name</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-field/name.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="name.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-field/name.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-field/name.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-field/name.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-field/name.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-field/name.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-field/name.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Field/name/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Field</a>/<a href="name.html">name</a></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><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><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>FreeFormObject</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-free-form-object/-free-form-object.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-free-form-object.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/-free-form-object.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/-free-form-object.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/-free-form-object.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/-free-form-object.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/-free-form-object.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/-free-form-object.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/FreeFormObject/FreeFormObject/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">FreeFormObject</a>/<a href="-free-form-object.html">FreeFormObject</a></div>
<div class="cover ">
<h1 class="cover"><span>Free</span><wbr><span>Form</span><wbr><span><span>Object</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-free-form-object.html"><span class="token function">FreeFormObject</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,47 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>FreeFormObject</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-free-form-object/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/FreeFormObject///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">FreeFormObject</a></div>
<div class="cover ">
<h1 class="cover"><span>Free</span><wbr><span>Form</span><wbr><span><span>Object</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">FreeFormObject</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"></div>
<div class="tabs-section-body"></div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,80 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>COOKIE</title>
</head><body><link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../../";</script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script><link href="../../../../styles/style.css" rel="Stylesheet"><link href="../../../../styles/jetbrains-mono.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"><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><link href="../../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html">2.1.1</a><a href="../../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html">2.1.0</a><a href="../../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html">2.0.4</a><a href="../../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html">2.0.3</a><a href="../../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html">2.0.2</a><a href="../../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.COOKIE///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-annotations</a>/<a href="../../index.html">io.bkbn.kompendium.annotations</a>/<a href="../index.html">ParamType</a>/<a href="index.html">COOKIE</a></div>
<div class="cover ">
<h1 class="cover"><span><span>COOKIE</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="index.html">COOKIE</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="index.html#-372974862%2FProperties%2F-1155457116">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="index.html#-372974862%2FProperties%2F-1155457116">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="index.html#-739389684%2FProperties%2F-1155457116">ordinal</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="index.html#-739389684%2FProperties%2F-1155457116">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,80 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>HEADER</title>
</head><body><link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../../";</script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script><link href="../../../../styles/style.css" rel="Stylesheet"><link href="../../../../styles/jetbrains-mono.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"><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><link href="../../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html">2.1.1</a><a href="../../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html">2.1.0</a><a href="../../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html">2.0.4</a><a href="../../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html">2.0.3</a><a href="../../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html">2.0.2</a><a href="../../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.HEADER///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-annotations</a>/<a href="../../index.html">io.bkbn.kompendium.annotations</a>/<a href="../index.html">ParamType</a>/<a href="index.html">HEADER</a></div>
<div class="cover ">
<h1 class="cover"><span><span>HEADER</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="index.html">HEADER</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,80 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>PATH</title>
</head><body><link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../../";</script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script><link href="../../../../styles/style.css" rel="Stylesheet"><link href="../../../../styles/jetbrains-mono.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"><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><link href="../../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html">2.1.1</a><a href="../../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html">2.1.0</a><a href="../../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html">2.0.4</a><a href="../../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html">2.0.3</a><a href="../../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html">2.0.2</a><a href="../../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.PATH///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-annotations</a>/<a href="../../index.html">io.bkbn.kompendium.annotations</a>/<a href="../index.html">ParamType</a>/<a href="index.html">PATH</a></div>
<div class="cover ">
<h1 class="cover"><span><span>PATH</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="index.html">PATH</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,80 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>QUERY</title>
</head><body><link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../../";</script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async></script><link href="../../../../styles/style.css" rel="Stylesheet"><link href="../../../../styles/jetbrains-mono.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"><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><link href="../../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html">2.1.1</a><a href="../../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html">2.1.0</a><a href="../../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html">2.0.4</a><a href="../../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html">2.0.3</a><a href="../../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html">2.0.2</a><a href="../../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.QUERY///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-annotations</a>/<a href="../../index.html">io.bkbn.kompendium.annotations</a>/<a href="../index.html">ParamType</a>/<a href="index.html">QUERY</a></div>
<div class="cover ">
<h1 class="cover"><span><span>QUERY</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="index.html">QUERY</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="../-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,142 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>ParamType</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-param-type/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">ParamType</a></div>
<div class="cover ">
<h1 class="cover"><span>Param</span><wbr><span><span>Type</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">enum </span><a href="index.html">ParamType</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">ParamType</a><span class="token operator">&gt; </span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">The allowed parameter types as specified by the OpenAPI specification</p></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Entries">Entries</button><button class="section-tab" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="tabbedcontent">Entries</h2>
<div class="table" data-togglable="Entries"><a data-name="-1082208437%2FClasslikes%2F-1155457116" anchor-label="QUERY" id="-1082208437%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-q-u-e-r-y/index.html">QUERY</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1082208437%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="-q-u-e-r-y/index.html">QUERY</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="2022232234%2FClasslikes%2F-1155457116" anchor-label="PATH" id="2022232234%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-p-a-t-h/index.html">PATH</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2022232234%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="-p-a-t-h/index.html">PATH</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-595291198%2FClasslikes%2F-1155457116" anchor-label="HEADER" id="-595291198%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-h-e-a-d-e-r/index.html">HEADER</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-595291198%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="-h-e-a-d-e-r/index.html">HEADER</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="537402315%2FClasslikes%2F-1155457116" anchor-label="COOKIE" id="537402315%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-c-o-o-k-i-e/index.html">COOKIE</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="537402315%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><a href="-c-o-o-k-i-e/index.html">COOKIE</a><span class="token punctuation">(</span><span class="token punctuation">)</span></div><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-372974862%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-372974862%2FProperties%2F-1155457116" anchor-label="name" id="-372974862%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="-c-o-o-k-i-e/index.html#-372974862%2FProperties%2F-1155457116">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-739389684%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-739389684%2FProperties%2F-1155457116" anchor-label="ordinal" id="-739389684%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="-c-o-o-k-i-e/index.html#-739389684%2FProperties%2F-1155457116">ordinal</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Param</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-param/-param.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-param.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param/-param.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-param/-param.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-param/-param.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-param/-param.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-param/-param.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param/-param.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Param/Param/#io.bkbn.kompendium.annotations.ParamType/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Param</a>/<a href="-param.html">Param</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Param</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-param.html"><span class="token function">Param</span></a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="../-param-type/index.html">ParamType</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><h2 class="">Parameters</h2><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>type</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">The type of parameter, must be valid <a href="../-param-type/index.html">ParamType</a></p></div></div></div></div></div></div></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,86 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Param</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-param/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-param/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-param/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-param/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-param/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Param///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Param</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Param</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">Param</a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="../-param-type/index.html">ParamType</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">Used to indicate that a field in a data class represents an OpenAPI parameter</p></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Constructors">Constructors</button><button class="section-tab" data-togglable="Properties">Properties</button><button class="section-tab" data-togglable="Parameters">Parameters</button></div>
<div class="tabs-section-body">
<h2 class="">Parameters</h2>
<div data-togglable="Parameters">
<div class="platform-hinted WithExtraAttributes" data-platform-hinted="data-platform-hinted" data-togglable="Parameters"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>type</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">The type of parameter, must be valid <a href="../-param-type/index.html">ParamType</a></p></div></div></div></div></div></div></div></div></div>
</div>
<h2 class="tabbedcontent">Constructors</h2>
<div class="table" data-togglable="Constructors"><a data-name="392898464%2FConstructors%2F-1155457116" anchor-label="Param" id="392898464%2FConstructors%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue TabbedContent">
<div class=""><span class="inline-flex">
<div><a href="-param.html"><span><span>Param</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="392898464%2FConstructors%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-param.html"><span class="token function">Param</span></a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="../-param-type/index.html">ParamType</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="1323415430%2FProperties%2F-1155457116" anchor-label="type" id="1323415430%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="type.html">type</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1323415430%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="1323415430%2FProperties%2F-1155457116" anchor-label="type" id="1323415430%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="type.html">type</a><span class="token operator">: </span><a href="../-param-type/index.html">ParamType</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>type</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-param/type.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="type.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param/type.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-param/type.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-param/type.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-param/type.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-param/type.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-param/type.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Param/type/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Param</a>/<a href="type.html">type</a></div>
<div class="cover ">
<h1 class="cover"><span><span>type</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="type.html">type</a><span class="token operator">: </span><a href="../-param-type/index.html">ParamType</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Referenced</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-referenced/-referenced.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-referenced.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/-referenced.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/-referenced.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/-referenced.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/-referenced.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/-referenced.html">2.0.2</a><a href="../../../not-found-version.html?v=2.0.1">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Referenced/Referenced/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Referenced</a>/<a href="-referenced.html">Referenced</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Referenced</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-referenced.html"><span class="token function">Referenced</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Referenced</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-referenced/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/index.html">2.0.2</a><a href="../../../not-found-version.html?v=2.0.1">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/Referenced///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">Referenced</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Referenced</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace strikethrough"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-c-l-a-s-s/index.html">AnnotationTarget.CLASS</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><strike><span class="token keyword">annotation class </span></strike><a href="index.html"><strike>Referenced</strike></a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">This instructs Kompendium to store the class as a referenced component. This is mandatory for any data models that have recursive children. If you do not annotate a recursive class with <a href="index.html">Referenced</a>, you will get a stack overflow error when you try to launch your API</p></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Constructors">Constructors</button></div>
<div class="tabs-section-body">
<h2 class="tabbedcontent">Constructors</h2>
<div class="table" data-togglable="Constructors"><a data-name="-1613143607%2FConstructors%2F-1155457116" anchor-label="Referenced" id="-1613143607%2FConstructors%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue TabbedContent">
<div class=""><span class="inline-flex">
<div><a href="-referenced.html"><span><span>Referenced</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1613143607%2FConstructors%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-referenced.html"><span class="token function">Referenced</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>UndeclaredField</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-undeclared-field/-undeclared-field.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="-undeclared-field.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/-undeclared-field.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/-undeclared-field.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/-undeclared-field.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/-undeclared-field.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/-undeclared-field.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/-undeclared-field.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField/UndeclaredField/#kotlin.String#kotlin.reflect.KClass[*]/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">UndeclaredField</a>/<a href="-undeclared-field.html">UndeclaredField</a></div>
<div class="cover ">
<h1 class="cover"><span>Undeclared</span><wbr><span><span>Field</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-undeclared-field.html"><span class="token function">UndeclaredField</span></a><span class="token punctuation">(</span>field<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>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><h2 class="">Parameters</h2><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>field</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Name of the extra field to add to the model</p></div></div></div></div></div><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>clazz</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Class type of the field being added. If this is a complex type, you are most likely doing something wrong.</p></div></div></div></div></div></div></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>clazz</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-undeclared-field/clazz.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="clazz.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/clazz.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/clazz.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/clazz.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/clazz.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/clazz.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/clazz.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField/clazz/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">UndeclaredField</a>/<a href="clazz.html">clazz</a></div>
<div class="cover ">
<h1 class="cover"><span><span>clazz</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="clazz.html">clazz</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>field</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-undeclared-field/field.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="field.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/field.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/field.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/field.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/field.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/field.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/field.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField/field/#/PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">UndeclaredField</a>/<a href="field.html">field</a></div>
<div class="cover ">
<h1 class="cover"><span><span>field</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="field.html">field</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,101 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>UndeclaredField</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/-undeclared-field/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField///PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../../index.html">kompendium-annotations</a>/<a href="../index.html">io.bkbn.kompendium.annotations</a>/<a href="index.html">UndeclaredField</a></div>
<div class="cover ">
<h1 class="cover"><span>Undeclared</span><wbr><span><span>Field</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-c-l-a-s-s/index.html">AnnotationTarget.CLASS</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="index.html">UndeclaredField</a><span class="token punctuation">(</span>field<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>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">This annotation allows users to add additional fields that are not part of the core data model. This should be used EXTREMELY sparingly. Most useful in supporting a variety of polymorphic serialization techniques.</p></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Constructors">Constructors</button><button class="section-tab" data-togglable="Properties">Properties</button><button class="section-tab" data-togglable="Parameters">Parameters</button></div>
<div class="tabs-section-body">
<h2 class="">Parameters</h2>
<div data-togglable="Parameters">
<div class="platform-hinted WithExtraAttributes" data-platform-hinted="data-platform-hinted" data-togglable="Parameters"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>field</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Name of the extra field to add to the model</p></div></div></div></div></div><div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>clazz</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Class type of the field being added. If this is a complex type, you are most likely doing something wrong.</p></div></div></div></div></div></div></div></div></div>
</div>
<h2 class="tabbedcontent">Constructors</h2>
<div class="table" data-togglable="Constructors"><a data-name="355700177%2FConstructors%2F-1155457116" anchor-label="UndeclaredField" id="355700177%2FConstructors%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue TabbedContent">
<div class=""><span class="inline-flex">
<div><a href="-undeclared-field.html"><span>Undeclared</span><wbr><span><span>Field</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="355700177%2FConstructors%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-undeclared-field.html"><span class="token function">UndeclaredField</span></a><span class="token punctuation">(</span>field<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>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-1042563160%2FProperties%2F-1155457116" anchor-label="clazz" id="-1042563160%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="clazz.html">clazz</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1042563160%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1042563160%2FProperties%2F-1155457116" anchor-label="clazz" id="-1042563160%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="clazz.html">clazz</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-1072028858%2FProperties%2F-1155457116" anchor-label="field" id="-1072028858%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="field.html">field</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1072028858%2FProperties%2F-1155457116"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><a data-name="-1072028858%2FProperties%2F-1155457116" anchor-label="field" id="-1072028858%2FProperties%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="field.html">field</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,140 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>io.bkbn.kompendium.annotations</title>
</head><body><link href="../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../";</script>
<script type="text/javascript" src="../../scripts/sourceset_dependencies.js" async></script><link href="../../styles/style.css" rel="Stylesheet"><link href="../../styles/jetbrains-mono.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"><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><link href="../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.annotations/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../older/2.1.1/kompendium-annotations/io.bkbn.kompendium.annotations/index.html">2.1.1</a><a href="../../older/2.1.0/kompendium-annotations/io.bkbn.kompendium.annotations/index.html">2.1.0</a><a href="../../older/2.0.4/kompendium-annotations/io.bkbn.kompendium.annotations/index.html">2.0.4</a><a href="../../older/2.0.3/kompendium-annotations/io.bkbn.kompendium.annotations/index.html">2.0.3</a><a href="../../older/2.0.2/kompendium-annotations/io.bkbn.kompendium.annotations/index.html">2.0.2</a><a href="../../older/2.0.1/kompendium-annotations/io.bkbn.kompendium.annotations/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-annotations::io.bkbn.kompendium.annotations////PointingToDeclaration//-1155457116">
<div class="breadcrumbs"><a href="../index.html">kompendium-annotations</a>/<a href="index.html">io.bkbn.kompendium.annotations</a></div>
<div class="cover ">
<h1 class="cover"><span>Package io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span><span>annotations</span></span></h1>
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><p class="paragraph">Contains all annotations used by Kompendium</p></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Types">Types</button></div>
<div class="tabs-section-body">
<h2 class="">Types</h2>
<div class="table" data-togglable="Types"><a data-name="-1854975086%2FClasslikes%2F-1155457116" anchor-label="Field" id="-1854975086%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-field/index.html"><span><span>Field</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1854975086%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-field/index.html">Field</a><span class="token punctuation">(</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>description<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 class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">Annotation used to perform field level overrides.</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-1208061529%2FClasslikes%2F-1155457116" anchor-label="FreeFormObject" id="-1208061529%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-free-form-object/index.html"><span>Free</span><wbr><span>Form</span><wbr><span><span>Object</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1208061529%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-free-form-object/index.html">FreeFormObject</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="578058079%2FClasslikes%2F-1155457116" anchor-label="Param" id="578058079%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-param/index.html"><span><span>Param</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="578058079%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-p-r-o-p-e-r-t-y/index.html">AnnotationTarget.PROPERTY</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-param/index.html">Param</a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="-param-type/index.html">ParamType</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">Used to indicate that a field in a data class represents an OpenAPI parameter</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-801323451%2FClasslikes%2F-1155457116" anchor-label="ParamType" id="-801323451%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-param-type/index.html"><span>Param</span><wbr><span><span>Type</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-801323451%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">enum </span><a href="-param-type/index.html">ParamType</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="-param-type/index.html">ParamType</a><span class="token operator">&gt; </span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">The allowed parameter types as specified by the OpenAPI specification</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-2036974179%2FClasslikes%2F-1155457116" anchor-label="Referenced" id="-2036974179%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-referenced/index.html"><span><span>Referenced</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2036974179%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace strikethrough"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-c-l-a-s-s/index.html">AnnotationTarget.CLASS</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><strike><span class="token keyword">annotation class </span></strike><a href="-referenced/index.html"><strike>Referenced</strike></a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">This instructs Kompendium to store the class as a referenced component. This is mandatory for any data models that have recursive children. If you do not annotate a recursive class with <a href="-referenced/index.html">Referenced</a>, you will get a stack overflow error when you try to launch your API</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-1687513979%2FClasslikes%2F-1155457116" anchor-label="UndeclaredField" id="-1687513979%2FClasslikes%2F-1155457116" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-annotations:dokkaHtmlPartial/main" data-filterable-set=":kompendium-annotations:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-undeclared-field/index.html"><span>Undeclared</span><wbr><span><span>Field</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1687513979%2FClasslikes%2F-1155457116"></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-depenent-content" data-active="" data-togglable=":kompendium-annotations:dokkaHtmlPartial/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-target/index.html"><span class="token annotation">Target</span></a><span class="token punctuation">(</span><span>allowedTargets<span class="token operator"> = </span><span class="token punctuation">[</span><span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.annotation/-annotation-target/-c-l-a-s-s/index.html">AnnotationTarget.CLASS</a></span><wbr><span class="token punctuation">]</span></span><wbr><span class="token punctuation">)</span></div></div><span class="token keyword">annotation class </span><a href="-undeclared-field/index.html">UndeclaredField</a><span class="token punctuation">(</span>field<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>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">This annotation allows users to add additional fields that are not part of the core data model. This should be used EXTREMELY sparingly. Most useful in supporting a variety of polymorphic serialization techniques.</p></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,642 @@
<div class="sideMenu">
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu" pageid="kompendium-annotations::////PointingToDeclaration//-1155457116">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-annotations-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/index.html"><span><span>kompendium-annotations</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations////PointingToDeclaration//-1155457116">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-annotations-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span><span>annotations</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/Field///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-field/index.html"><span><span>Field</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/FreeFormObject///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/index.html"><span>Free</span><wbr><span>Form</span><wbr><span><span>Object</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/Param///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param/index.html"><span><span>Param</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType///PointingToDeclaration//-1155457116">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-annotations-nav-submenu-0-3&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/index.html"><span>Param</span><wbr><span><span>Type</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.COOKIE///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html"><span><span>COOKIE</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.HEADER///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html"><span><span>HEADER</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.PATH///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html"><span><span>PATH</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.QUERY///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html"><span><span>QUERY</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-4" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/Referenced///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/index.html"><span><span>Referenced</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-5" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/index.html"><span>Undeclared</span><wbr><span><span>Field</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint////PointingToDeclaration//-1155457116">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-annotations-nav-submenu-1&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>annotations.</span><wbr><span>constraint</span></a>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Format///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/index.html"><span><span>Format</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/index.html"><span><span>Maximum</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxItems///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/index.html"><span>Max</span><wbr><span><span>Items</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxLength///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/index.html"><span>Max</span><wbr><span><span>Length</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-4" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxProperties///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/index.html"><span>Max</span><wbr><span><span>Properties</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-5" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/index.html"><span><span>Minimum</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-6" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinItems///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/index.html"><span>Min</span><wbr><span><span>Items</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-7" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinLength///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/index.html"><span>Min</span><wbr><span><span>Length</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-8" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinProperties///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/index.html"><span>Min</span><wbr><span><span>Properties</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-9" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MultipleOf///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html"><span>Multiple</span><wbr><span><span>Of</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-10" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Pattern///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/index.html"><span><span>Pattern</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-11" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/UniqueItems///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/index.html"><span>Unique</span><wbr><span><span>Items</span></span></a>
</div>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu" pageid="kompendium-auth::////PointingToDeclaration//23619058">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-auth-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-auth/index.html"><span><span>kompendium-auth</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-0" pageid="kompendium-auth::io.bkbn.kompendium.auth////PointingToDeclaration//23619058">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-auth-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-auth/io.bkbn.kompendium.auth/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth</span></a>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-0-0" pageid="kompendium-auth::io.bkbn.kompendium.auth/Notarized///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth/-notarized/index.html"><span><span>Notarized</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration////PointingToDeclaration//23619058">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-auth-nav-submenu-1&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth.</span><wbr><span><span>configuration</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-0" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/ApiKeyConfiguration///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html"><span>Api</span><wbr><span>Key</span><wbr><span><span>Configuration</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-1" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/BasicAuthConfiguration///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html"><span>Basic</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-2" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/JwtAuthConfiguration///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html"><span>Jwt</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-3" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/OAuthConfiguration///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html"><span>OAuth</span><wbr><span><span>Configuration</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-4" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/SecurityConfiguration///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/index.html"><span>Security</span><wbr><span><span>Configuration</span></span></a>
</div>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu" pageid="kompendium-core::////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/index.html"><span><span>kompendium-core</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0" pageid="kompendium-core::io.bkbn.kompendium.core////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-0" pageid="kompendium-core::io.bkbn.kompendium.core/Kompendium///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core/-kompendium/index.html"><span><span>Kompendium</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-1" pageid="kompendium-core::io.bkbn.kompendium.core/KompendiumPreFlight///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core/-kompendium-pre-flight/index.html"><span>Kompendium</span><wbr><span>Pre</span><wbr><span><span>Flight</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-2" pageid="kompendium-core::io.bkbn.kompendium.core/Kontent///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core/-kontent/index.html"><span><span>Kontent</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-3" pageid="kompendium-core::io.bkbn.kompendium.core/Notarized///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core/-notarized/index.html"><span><span>Notarized</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1" pageid="kompendium-core::io.bkbn.kompendium.core.constraint////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-1&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.constraint/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>constraint</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-0" pageid="kompendium-core::io.bkbn.kompendium.core.constraint//adjustForRequiredParams/io.bkbn.kompendium.oas.schema.ObjectSchema#kotlin.reflect.KClass[*]/PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.constraint/adjust-for-required-params.html"><span>adjust</span><wbr><span>For</span><wbr><span>Required</span><wbr><span><span>Params()</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-1" pageid="kompendium-core::io.bkbn.kompendium.core.constraint//scanForConstraints/io.bkbn.kompendium.oas.schema.ComponentSchema#kotlin.reflect.KType#kotlin.reflect.KProperty1[*,*]/PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.constraint/scan-for-constraints.html"><span>scan</span><wbr><span>For</span><wbr><span><span>Constraints()</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2" pageid="kompendium-core::io.bkbn.kompendium.core.handler////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-2&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.handler/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>handler</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-0" pageid="kompendium-core::io.bkbn.kompendium.core.handler/CollectionHandler///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.handler/-collection-handler/index.html"><span>Collection</span><wbr><span><span>Handler</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-1" pageid="kompendium-core::io.bkbn.kompendium.core.handler/EnumHandler///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.handler/-enum-handler/index.html"><span>Enum</span><wbr><span><span>Handler</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-2" pageid="kompendium-core::io.bkbn.kompendium.core.handler/MapHandler///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.handler/-map-handler/index.html"><span>Map</span><wbr><span><span>Handler</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-3" pageid="kompendium-core::io.bkbn.kompendium.core.handler/ObjectHandler///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.handler/-object-handler/index.html"><span>Object</span><wbr><span><span>Handler</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-4" pageid="kompendium-core::io.bkbn.kompendium.core.handler/SchemaHandler///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.handler/-schema-handler/index.html"><span>Schema</span><wbr><span><span>Handler</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3" pageid="kompendium-core::io.bkbn.kompendium.core.metadata////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-3&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.metadata/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>metadata</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-0" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ExceptionInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-exception-info/index.html"><span>Exception</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-1" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ParameterExample///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-parameter-example/index.html"><span>Parameter</span><wbr><span><span>Example</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-2" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/RequestInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-request-info/index.html"><span>Request</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-3" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ResponseInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-response-info/index.html"><span>Response</span><wbr><span><span>Info</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-4&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>metadata.</span><wbr><span>method</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-0" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/DeleteInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-delete-info/index.html"><span>Delete</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-1" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/GetInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-get-info/index.html"><span>Get</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-2" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/HeadInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-head-info/index.html"><span>Head</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-3" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/MethodInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-method-info/index.html"><span>Method</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-4" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/OptionsInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-options-info/index.html"><span>Options</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-5" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PatchInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-patch-info/index.html"><span>Patch</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-6" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PostInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-post-info/index.html"><span>Post</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-7" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PutInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-put-info/index.html"><span>Put</span><wbr><span><span>Info</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-5" pageid="kompendium-core::io.bkbn.kompendium.core.parser////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-5&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.parser/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>parser</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-5-0" pageid="kompendium-core::io.bkbn.kompendium.core.parser/DefaultMethodParser///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.parser/-default-method-parser/index.html"><span>Default</span><wbr><span>Method</span><wbr><span><span>Parser</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-5-1" pageid="kompendium-core::io.bkbn.kompendium.core.parser/IMethodParser///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.parser/-i-method-parser/index.html"><span>IMethod</span><wbr><span><span>Parser</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-6" pageid="kompendium-core::io.bkbn.kompendium.core.routes////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-6&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.routes/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>routes</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-6-0" pageid="kompendium-core::io.bkbn.kompendium.core.routes//redoc/io.ktor.routing.Routing#kotlin.String#kotlin.String/PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.routes/redoc.html"><span><span>redoc()</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-6-1" pageid="kompendium-core::io.bkbn.kompendium.core.routes//swagger/io.ktor.routing.Routing#kotlin.String#kotlin.String/PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.routes/swagger.html"><span><span>swagger()</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-7" pageid="kompendium-core::io.bkbn.kompendium.core.util////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-7&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.util/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>util</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-7-0" pageid="kompendium-core::io.bkbn.kompendium.core.util/Helpers///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.util/-helpers/index.html"><span><span>Helpers</span></span></a>
</div>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-locations-nav-submenu" pageid="kompendium-locations::////PointingToDeclaration//-730534806">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-locations-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-locations/index.html"><span><span>kompendium-locations</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0" pageid="kompendium-locations::io.bkbn.kompendium.locations////PointingToDeclaration//-730534806">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-locations-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-locations/io.bkbn.kompendium.locations/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>locations</span></a>
</div>
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0-0" pageid="kompendium-locations::io.bkbn.kompendium.locations/LocationMethodParser///PointingToDeclaration//-730534806">
<div class="overview">
<a href="../kompendium-locations/io.bkbn.kompendium.locations/-location-method-parser/index.html"><span>Location</span><wbr><span>Method</span><wbr><span><span>Parser</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0-1" pageid="kompendium-locations::io.bkbn.kompendium.locations/NotarizedLocation///PointingToDeclaration//-730534806">
<div class="overview">
<a href="../kompendium-locations/io.bkbn.kompendium.locations/-notarized-location/index.html"><span>Notarized</span><wbr><span><span>Location</span></span></a>
</div>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu" pageid="kompendium-oas::////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/index.html"><span><span>kompendium-oas</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-0" pageid="kompendium-oas::io.bkbn.kompendium.oas////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-0-0" pageid="kompendium-oas::io.bkbn.kompendium.oas/OpenApiSpec///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas/-open-api-spec/index.html"><span>Open</span><wbr><span>Api</span><wbr><span><span>Spec</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.common////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-1&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.common/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>common</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.common/ExternalDocumentation///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html"><span>External</span><wbr><span><span>Documentation</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.common/Tag///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.common/-tag/index.html"><span><span>Tag</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.component////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-2&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.component/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>component</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-2-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.component/Components///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.component/-components/index.html"><span><span>Components</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.info////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-3&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.info/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>info</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/Contact///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-contact/index.html"><span><span>Contact</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/Info///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-info/index.html"><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/License///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-license/index.html"><span><span>License</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.path////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-4&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.path/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>path</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.path/Path///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.path/-path/index.html"><span><span>Path</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.path/PathOperation///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.path/-path-operation/index.html"><span>Path</span><wbr><span><span>Operation</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-5&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>payload</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/AnyOfPayload///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-any-of-payload/index.html"><span>Any</span><wbr><span>Of</span><wbr><span><span>Payload</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/MediaType///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-media-type/index.html"><span>Media</span><wbr><span><span>Type</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Parameter///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html"><span><span>Parameter</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Payload///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-payload/index.html"><span><span>Payload</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Request///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-request/index.html"><span><span>Request</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Response///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-response/index.html"><span><span>Response</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-6&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>schema</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/AnyOfSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-any-of-schema/index.html"><span>Any</span><wbr><span>Of</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ArraySchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-array-schema/index.html"><span>Array</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ComponentSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-component-schema/index.html"><span>Component</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/DictionarySchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-dictionary-schema/index.html"><span>Dictionary</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/EnumSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-enum-schema/index.html"><span>Enum</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/FormattedSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-formatted-schema/index.html"><span>Formatted</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-6" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/FreeFormSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-free-form-schema/index.html"><span>Free</span><wbr><span>Form</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-7" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ObjectSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-object-schema/index.html"><span>Object</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-8" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ReferencedSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-referenced-schema/index.html"><span>Referenced</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-9" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/SimpleSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-simple-schema/index.html"><span>Simple</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-10" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/TypedSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-typed-schema/index.html"><span>Typed</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7" pageid="kompendium-oas::io.bkbn.kompendium.oas.security////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-7&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.security/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>security</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/ApiKeyAuth///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-api-key-auth/index.html"><span>Api</span><wbr><span>Key</span><wbr><span><span>Auth</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/BasicAuth///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-basic-auth/index.html"><span>Basic</span><wbr><span><span>Auth</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/BearerAuth///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-bearer-auth/index.html"><span>Bearer</span><wbr><span><span>Auth</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/OAuth///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-o-auth/index.html"><span><span>OAuth</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/SecuritySchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-security-schema/index.html"><span>Security</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-8&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span><span>serialization</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/AnySerializer///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-any-serializer/index.html"><span>Any</span><wbr><span><span>Serializer</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/ComponentSchemaSerializer///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-component-schema-serializer/index.html"><span>Component</span><wbr><span>Schema</span><wbr><span><span>Serializer</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/KompendiumSerializersModule///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-kompendium-serializers-module/index.html"><span>Kompendium</span><wbr><span>Serializers</span><wbr><span><span>Module</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/NumberSerializer///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-number-serializer/index.html"><span>Number</span><wbr><span><span>Serializer</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/SecuritySchemaSerializer///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-security-schema-serializer/index.html"><span>Security</span><wbr><span>Schema</span><wbr><span><span>Serializer</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/UriSerializer///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-uri-serializer/index.html"><span>Uri</span><wbr><span><span>Serializer</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9" pageid="kompendium-oas::io.bkbn.kompendium.oas.server////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-9&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.server/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>server</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.server/Server///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.server/-server/index.html"><span><span>Server</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.server/ServerVariable///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.server/-server-variable/index.html"><span>Server</span><wbr><span><span>Variable</span></span></a>
</div>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu" pageid="kompendium-swagger-ui::////PointingToDeclaration//-1695985917">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-swagger-ui-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-swagger-ui/index.html"><span><span>kompendium-swagger-ui</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu-0" pageid="kompendium-swagger-ui::io.bkbn.kompendium.swagger////PointingToDeclaration//-1695985917">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-swagger-ui-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-swagger-ui/io.bkbn.kompendium.swagger/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>swagger</span></a>
</div>
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu-0-0" pageid="kompendium-swagger-ui::io.bkbn.kompendium.swagger//swaggerUI/io.ktor.routing.Routing#kotlin.String/PointingToDeclaration//-1695985917">
<div class="overview">
<a href="../kompendium-swagger-ui/io.bkbn.kompendium.swagger/swagger-u-i.html"><span>swagger</span><wbr><span><span>UI()</span></span></a>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,75 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>kompendium-auth</title>
</head><body><link href="../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../";</script>
<script type="text/javascript" src="../scripts/sourceset_dependencies.js" async></script><link href="../styles/style.css" rel="Stylesheet"><link href="../styles/jetbrains-mono.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"><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><link href="../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../older/2.1.1/kompendium-auth/index.html">2.1.1</a><a href="../older/2.1.0/kompendium-auth/index.html">2.1.0</a><a href="../older/2.0.4/kompendium-auth/index.html">2.0.4</a><a href="../older/2.0.3/kompendium-auth/index.html">2.0.3</a><a href="../older/2.0.2/kompendium-auth/index.html">2.0.2</a><a href="../older/2.0.1/kompendium-auth/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::////PointingToDeclaration//23619058">
<div class="breadcrumbs"></div>
<div class="cover ">
<h1 class="cover"><span><span>kompendium-auth</span></span></h1>
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><p class="paragraph">This module is responsible for providing wrappers around ktor-auth configuration blocks, allowing users to document their API authentication with minimal modifications to their existing configuration.</p></div></div>
</div>
<h2 class="">Packages</h2>
<div class="table"><a data-name="250592570%2FPackages%2F23619058" anchor-label="io.bkbn.kompendium.auth" id="250592570%2FPackages%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.auth/index.html">io.bkbn.kompendium.auth</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="250592570%2FPackages%2F23619058"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div><span class="brief-comment"><a data-name="250592570%2FPackages%2F23619058" anchor-label="io.bkbn.kompendium.auth" id="250592570%2FPackages%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<p class="paragraph">Base package that is responsible for setting up required authentication route handlers along with exposing wrapper methods for each ktor-auth authentication mechanism.</p>
</span></div>
</div>
</div>
<a data-name="-1419831102%2FPackages%2F23619058" anchor-label="io.bkbn.kompendium.auth.configuration" id="-1419831102%2FPackages%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.auth.configuration/index.html">io.bkbn.kompendium.auth.configuration</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1419831102%2FPackages%2F23619058"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div></div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,95 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>ApiKeyConfiguration</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/ApiKeyConfiguration///PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">ApiKeyConfiguration</a></div>
<div class="cover ">
<h1 class="cover"><span>Api</span><wbr><span>Key</span><wbr><span><span>Configuration</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="index.html">ApiKeyConfiguration</a> : <a href="../-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="1878373280%2FProperties%2F23619058" anchor-label="keyName" id="1878373280%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="key-name.html">keyName</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1878373280%2FProperties%2F23619058"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1878373280%2FProperties%2F23619058" anchor-label="keyName" id="1878373280%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="key-name.html">keyName</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="2117830939%2FProperties%2F23619058" anchor-label="location" id="2117830939%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="location.html">location</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2117830939%2FProperties%2F23619058"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="2117830939%2FProperties%2F23619058" anchor-label="location" id="2117830939%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="location.html">location</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.security/-api-key-auth/-api-key-location/index.html">ApiKeyAuth.ApiKeyLocation</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-security-configuration/name.html">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1786290186%2FProperties%2F23619058"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="../-security-configuration/name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>keyName</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-api-key-configuration/key-name.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="key-name.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/key-name.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/key-name.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/key-name.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/key-name.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/key-name.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/key-name.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/ApiKeyConfiguration/keyName/#/PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">ApiKeyConfiguration</a>/<a href="key-name.html">keyName</a></div>
<div class="cover ">
<h1 class="cover"><span>key</span><wbr><span><span>Name</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="key-name.html">keyName</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>location</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-api-key-configuration/location.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="location.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/location.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/location.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/location.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/location.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/location.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/location.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/ApiKeyConfiguration/location/#/PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">ApiKeyConfiguration</a>/<a href="location.html">location</a></div>
<div class="cover ">
<h1 class="cover"><span><span>location</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="location.html">location</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.security/-api-key-auth/-api-key-location/index.html">ApiKeyAuth.ApiKeyLocation</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>BasicAuthConfiguration</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/BasicAuthConfiguration///PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">BasicAuthConfiguration</a></div>
<div class="cover ">
<h1 class="cover"><span>Basic</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="index.html">BasicAuthConfiguration</a> : <a href="../-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-security-configuration/name.html">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1786290186%2FProperties%2F23619058"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="../-security-configuration/name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>bearerFormat</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/bearer-format.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="bearer-format.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/bearer-format.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/bearer-format.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/bearer-format.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/bearer-format.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/bearer-format.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/bearer-format.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/JwtAuthConfiguration/bearerFormat/#/PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">JwtAuthConfiguration</a>/<a href="bearer-format.html">bearerFormat</a></div>
<div class="cover ">
<h1 class="cover"><span>bearer</span><wbr><span><span>Format</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">val </span><a href="bearer-format.html">bearerFormat</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,80 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>JwtAuthConfiguration</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/JwtAuthConfiguration///PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">JwtAuthConfiguration</a></div>
<div class="cover ">
<h1 class="cover"><span>Jwt</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="index.html">JwtAuthConfiguration</a> : <a href="../-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="1007961548%2FProperties%2F23619058" anchor-label="bearerFormat" id="1007961548%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="bearer-format.html">bearerFormat</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1007961548%2FProperties%2F23619058"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1007961548%2FProperties%2F23619058" anchor-label="bearerFormat" id="1007961548%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">val </span><a href="bearer-format.html">bearerFormat</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-security-configuration/name.html">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1786290186%2FProperties%2F23619058"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="../-security-configuration/name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>description</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-o-auth-configuration/description.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="description.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/description.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/description.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/description.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/description.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/description.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/description.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/OAuthConfiguration/description/#/PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">OAuthConfiguration</a>/<a href="description.html">description</a></div>
<div class="cover ">
<h1 class="cover"><span><span>description</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">val </span><a href="description.html">description</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">?</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>flows</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-o-auth-configuration/flows.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="flows.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/flows.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/flows.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/flows.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/flows.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/flows.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/flows.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/OAuthConfiguration/flows/#/PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">OAuthConfiguration</a>/<a href="flows.html">flows</a></div>
<div class="cover ">
<h1 class="cover"><span><span>flows</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="flows.html">flows</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.security/-o-auth/-flows/index.html">OAuth.Flows</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,95 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>OAuthConfiguration</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/OAuthConfiguration///PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">OAuthConfiguration</a></div>
<div class="cover ">
<h1 class="cover"><span>OAuth</span><wbr><span><span>Configuration</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="index.html">OAuthConfiguration</a> : <a href="../-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-68600190%2FProperties%2F23619058" anchor-label="description" id="-68600190%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="description.html">description</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-68600190%2FProperties%2F23619058"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="-68600190%2FProperties%2F23619058" anchor-label="description" id="-68600190%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">val </span><a href="description.html">description</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">?</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-23630247%2FProperties%2F23619058" anchor-label="flows" id="-23630247%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="flows.html">flows</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-23630247%2FProperties%2F23619058"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="-23630247%2FProperties%2F23619058" anchor-label="flows" id="-23630247%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="flows.html">flows</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.security/-o-auth/-flows/index.html">OAuth.Flows</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-security-configuration/name.html">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1786290186%2FProperties%2F23619058"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="../-security-configuration/name.html">name</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,111 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>SecurityConfiguration</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-security-configuration/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/SecurityConfiguration///PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">SecurityConfiguration</a></div>
<div class="cover ">
<h1 class="cover"><span>Security</span><wbr><span><span>Configuration</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Properties">Properties</button><button class="section-tab" data-togglable="Inheritors">Inheritors</button></div>
<div class="tabs-section-body">
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="name.html">name</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1786290186%2FProperties%2F23619058"></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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><a data-name="1786290186%2FProperties%2F23619058" anchor-label="name" id="1786290186%2FProperties%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><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><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
<h2 class="">Inheritors</h2>
<div class="table" data-togglable="Inheritors"><a data-name="197760559%2FInheritors%2F23619058" anchor-label="ApiKeyConfiguration" id="197760559%2FInheritors%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-api-key-configuration/index.html">ApiKeyConfiguration</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="197760559%2FInheritors%2F23619058"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div></div>
</div>
</div>
<a data-name="1947561026%2FInheritors%2F23619058" anchor-label="BasicAuthConfiguration" id="1947561026%2FInheritors%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-basic-auth-configuration/index.html">BasicAuthConfiguration</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1947561026%2FInheritors%2F23619058"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div></div>
</div>
</div>
<a data-name="-2142921253%2FInheritors%2F23619058" anchor-label="JwtAuthConfiguration" id="-2142921253%2FInheritors%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-jwt-auth-configuration/index.html">JwtAuthConfiguration</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2142921253%2FInheritors%2F23619058"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div></div>
</div>
</div>
<a data-name="-346409021%2FInheritors%2F23619058" anchor-label="OAuthConfiguration" id="-346409021%2FInheritors%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-o-auth-configuration/index.html">OAuthConfiguration</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-346409021%2FInheritors%2F23619058"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>name</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/-security-configuration/name.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="name.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/name.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/name.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/name.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/name.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/name.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/name.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration/SecurityConfiguration/name/#/PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth.configuration</a>/<a href="index.html">SecurityConfiguration</a>/<a href="name.html">name</a></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-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">abstract </span><span class="token keyword"></span><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><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,124 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>io.bkbn.kompendium.auth.configuration</title>
</head><body><link href="../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../";</script>
<script type="text/javascript" src="../../scripts/sourceset_dependencies.js" async></script><link href="../../styles/style.css" rel="Stylesheet"><link href="../../styles/jetbrains-mono.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"><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><link href="../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth.configuration/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/index.html">2.1.1</a><a href="../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth.configuration/index.html">2.1.0</a><a href="../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth.configuration/index.html">2.0.4</a><a href="../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth.configuration/index.html">2.0.3</a><a href="../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth.configuration/index.html">2.0.2</a><a href="../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth.configuration/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth.configuration////PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../index.html">kompendium-auth</a>/<a href="index.html">io.bkbn.kompendium.auth.configuration</a></div>
<div class="cover ">
<h1 class="cover"><span>Package io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth.</span><wbr><span><span>configuration</span></span></h1>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Types">Types</button></div>
<div class="tabs-section-body">
<h2 class="">Types</h2>
<div class="table" data-togglable="Types"><a data-name="197760559%2FClasslikes%2F23619058" anchor-label="ApiKeyConfiguration" id="197760559%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-api-key-configuration/index.html"><span>Api</span><wbr><span>Key</span><wbr><span><span>Configuration</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="197760559%2FClasslikes%2F23619058"></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-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="-api-key-configuration/index.html">ApiKeyConfiguration</a> : <a href="-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="1947561026%2FClasslikes%2F23619058" anchor-label="BasicAuthConfiguration" id="1947561026%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-basic-auth-configuration/index.html"><span>Basic</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1947561026%2FClasslikes%2F23619058"></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-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="-basic-auth-configuration/index.html">BasicAuthConfiguration</a> : <a href="-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-2142921253%2FClasslikes%2F23619058" anchor-label="JwtAuthConfiguration" id="-2142921253%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-jwt-auth-configuration/index.html"><span>Jwt</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2142921253%2FClasslikes%2F23619058"></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-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="-jwt-auth-configuration/index.html">JwtAuthConfiguration</a> : <a href="-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-346409021%2FClasslikes%2F23619058" anchor-label="OAuthConfiguration" id="-346409021%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-o-auth-configuration/index.html"><span>OAuth</span><wbr><span><span>Configuration</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-346409021%2FClasslikes%2F23619058"></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-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="-o-auth-configuration/index.html">OAuthConfiguration</a> : <a href="-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-1010289782%2FClasslikes%2F23619058" anchor-label="SecurityConfiguration" id="-1010289782%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-security-configuration/index.html"><span>Security</span><wbr><span><span>Configuration</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1010289782%2FClasslikes%2F23619058"></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-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">interface </span><a href="-security-configuration/index.html">SecurityConfiguration</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Notarized</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth/-notarized/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth/-notarized/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth/-notarized/index.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth/-notarized/index.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth/-notarized/index.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth/-notarized/index.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth/-notarized/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth/Notarized///PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth</a>/<a href="index.html">Notarized</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Notarized</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">Notarized</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Functions">Functions</button></div>
<div class="tabs-section-body">
<h2 class="">Functions</h2>
<div class="table" data-togglable="Functions"><a data-name="-1273114746%2FFunctions%2F23619058" anchor-label="notarizedAuthenticate" id="-1273114746%2FFunctions%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="notarized-authenticate.html"><span>notarized</span><wbr><span><span>Authenticate</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1273114746%2FFunctions%2F23619058"></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-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="token punctuation">.</span><a href="notarized-authenticate.html"><span class="token function">notarizedAuthenticate</span></a><span class="token punctuation">(</span><span class="token keyword">vararg </span>configurations<span class="token operator">: </span><a href="../../io.bkbn.kompendium.auth.configuration/-security-configuration/index.html">SecurityConfiguration</a><span class="token punctuation">, </span>optional<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="token punctuation">, </span>build<span class="token operator">: </span><span class="token keyword"></span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="token punctuation">.</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator"> -&gt; </span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a><span class="token punctuation">)</span><span class="token operator">: </span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>notarizedAuthenticate</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth/-notarized/notarized-authenticate.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="notarized-authenticate.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth/-notarized/notarized-authenticate.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth/-notarized/notarized-authenticate.html">2.1.0</a><a href="../../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth/-notarized/notarized-authenticate.html">2.0.4</a><a href="../../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth/-notarized/notarized-authenticate.html">2.0.3</a><a href="../../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth/-notarized/notarized-authenticate.html">2.0.2</a><a href="../../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth/-notarized/notarized-authenticate.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth/Notarized/notarizedAuthenticate/io.ktor.routing.Route#kotlin.Array[io.bkbn.kompendium.auth.configuration.SecurityConfiguration]#kotlin.Boolean#kotlin.Function1[io.ktor.routing.Route,kotlin.Unit]/PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../../index.html">kompendium-auth</a>/<a href="../index.html">io.bkbn.kompendium.auth</a>/<a href="index.html">Notarized</a>/<a href="notarized-authenticate.html">notarizedAuthenticate</a></div>
<div class="cover ">
<h1 class="cover"><span>notarized</span><wbr><span><span>Authenticate</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="token punctuation">.</span><a href="notarized-authenticate.html"><span class="token function">notarizedAuthenticate</span></a><span class="token punctuation">(</span><span class="token keyword">vararg </span>configurations<span class="token operator">: </span><a href="../../io.bkbn.kompendium.auth.configuration/-security-configuration/index.html">SecurityConfiguration</a><span class="token punctuation">, </span>optional<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span><span class="token punctuation">, </span>build<span class="token operator">: </span><span class="token keyword"></span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="token punctuation">.</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator"> -&gt; </span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a><span class="token punctuation">)</span><span class="token operator">: </span><span data-unresolved-link="io.ktor.routing/Route///PointingToDeclaration/">Route</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,65 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>io.bkbn.kompendium.auth</title>
</head><body><link href="../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../";</script>
<script type="text/javascript" src="../../scripts/sourceset_dependencies.js" async></script><link href="../../styles/style.css" rel="Stylesheet"><link href="../../styles/jetbrains-mono.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"><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><link href="../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.auth/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../older/2.1.1/kompendium-auth/io.bkbn.kompendium.auth/index.html">2.1.1</a><a href="../../older/2.1.0/kompendium-auth/io.bkbn.kompendium.auth/index.html">2.1.0</a><a href="../../older/2.0.4/kompendium-auth/io.bkbn.kompendium.auth/index.html">2.0.4</a><a href="../../older/2.0.3/kompendium-auth/io.bkbn.kompendium.auth/index.html">2.0.3</a><a href="../../older/2.0.2/kompendium-auth/io.bkbn.kompendium.auth/index.html">2.0.2</a><a href="../../older/2.0.1/kompendium-auth/io.bkbn.kompendium.auth/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-auth::io.bkbn.kompendium.auth////PointingToDeclaration//23619058">
<div class="breadcrumbs"><a href="../index.html">kompendium-auth</a>/<a href="index.html">io.bkbn.kompendium.auth</a></div>
<div class="cover ">
<h1 class="cover"><span>Package io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth</span></h1>
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><p class="paragraph">Base package that is responsible for setting up required authentication route handlers along with exposing wrapper methods for each ktor-auth authentication mechanism.</p><p class="paragraph">Houses the available security configurations. At the moment, <code class="lang-kotlin">Basic</code>, <code class="lang-kotlin">JWT</code>, <code class="lang-kotlin">ApiKey</code>, and <code class="lang-kotlin">OAuth</code> are supported</p></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Types">Types</button></div>
<div class="tabs-section-body">
<h2 class="">Types</h2>
<div class="table" data-togglable="Types"><a data-name="2014158356%2FClasslikes%2F23619058" anchor-label="Notarized" id="2014158356%2FClasslikes%2F23619058" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-auth:dokkaHtmlPartial/main" data-filterable-set=":kompendium-auth:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="-notarized/index.html"><span><span>Notarized</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2014158356%2FClasslikes%2F23619058"></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-depenent-content" data-active="" data-togglable=":kompendium-auth:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="-notarized/index.html">Notarized</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,642 @@
<div class="sideMenu">
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu" pageid="kompendium-annotations::////PointingToDeclaration//-1155457116">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-annotations-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/index.html"><span><span>kompendium-annotations</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations////PointingToDeclaration//-1155457116">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-annotations-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span><span>annotations</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/Field///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-field/index.html"><span><span>Field</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/FreeFormObject///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-free-form-object/index.html"><span>Free</span><wbr><span>Form</span><wbr><span><span>Object</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/Param///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param/index.html"><span><span>Param</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType///PointingToDeclaration//-1155457116">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-annotations-nav-submenu-0-3&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/index.html"><span>Param</span><wbr><span><span>Type</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.COOKIE///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-c-o-o-k-i-e/index.html"><span><span>COOKIE</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.HEADER///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-h-e-a-d-e-r/index.html"><span><span>HEADER</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.PATH///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-p-a-t-h/index.html"><span><span>PATH</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-3-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/ParamType.QUERY///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-param-type/-q-u-e-r-y/index.html"><span><span>QUERY</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-4" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/Referenced///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-referenced/index.html"><span><span>Referenced</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-0-5" pageid="kompendium-annotations::io.bkbn.kompendium.annotations/UndeclaredField///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations/-undeclared-field/index.html"><span>Undeclared</span><wbr><span><span>Field</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint////PointingToDeclaration//-1155457116">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-annotations-nav-submenu-1&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>annotations.</span><wbr><span>constraint</span></a>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-0" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Format///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-format/index.html"><span><span>Format</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-1" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Maximum///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-maximum/index.html"><span><span>Maximum</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-2" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxItems///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-items/index.html"><span>Max</span><wbr><span><span>Items</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-3" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxLength///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-length/index.html"><span>Max</span><wbr><span><span>Length</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-4" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MaxProperties///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-max-properties/index.html"><span>Max</span><wbr><span><span>Properties</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-5" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Minimum///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-minimum/index.html"><span><span>Minimum</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-6" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinItems///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-items/index.html"><span>Min</span><wbr><span><span>Items</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-7" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinLength///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-length/index.html"><span>Min</span><wbr><span><span>Length</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-8" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MinProperties///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-min-properties/index.html"><span>Min</span><wbr><span><span>Properties</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-9" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/MultipleOf///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-multiple-of/index.html"><span>Multiple</span><wbr><span><span>Of</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-10" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/Pattern///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-pattern/index.html"><span><span>Pattern</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-annotations-nav-submenu-1-11" pageid="kompendium-annotations::io.bkbn.kompendium.annotations.constraint/UniqueItems///PointingToDeclaration//-1155457116">
<div class="overview">
<a href="../kompendium-annotations/io.bkbn.kompendium.annotations.constraint/-unique-items/index.html"><span>Unique</span><wbr><span><span>Items</span></span></a>
</div>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu" pageid="kompendium-auth::////PointingToDeclaration//23619058">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-auth-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-auth/index.html"><span><span>kompendium-auth</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-0" pageid="kompendium-auth::io.bkbn.kompendium.auth////PointingToDeclaration//23619058">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-auth-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-auth/io.bkbn.kompendium.auth/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth</span></a>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-0-0" pageid="kompendium-auth::io.bkbn.kompendium.auth/Notarized///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth/-notarized/index.html"><span><span>Notarized</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration////PointingToDeclaration//23619058">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-auth-nav-submenu-1&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>auth.</span><wbr><span><span>configuration</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-0" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/ApiKeyConfiguration///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-api-key-configuration/index.html"><span>Api</span><wbr><span>Key</span><wbr><span><span>Configuration</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-1" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/BasicAuthConfiguration///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-basic-auth-configuration/index.html"><span>Basic</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-2" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/JwtAuthConfiguration///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-jwt-auth-configuration/index.html"><span>Jwt</span><wbr><span>Auth</span><wbr><span><span>Configuration</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-3" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/OAuthConfiguration///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-o-auth-configuration/index.html"><span>OAuth</span><wbr><span><span>Configuration</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-auth-nav-submenu-1-4" pageid="kompendium-auth::io.bkbn.kompendium.auth.configuration/SecurityConfiguration///PointingToDeclaration//23619058">
<div class="overview">
<a href="../kompendium-auth/io.bkbn.kompendium.auth.configuration/-security-configuration/index.html"><span>Security</span><wbr><span><span>Configuration</span></span></a>
</div>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu" pageid="kompendium-core::////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/index.html"><span><span>kompendium-core</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0" pageid="kompendium-core::io.bkbn.kompendium.core////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-0" pageid="kompendium-core::io.bkbn.kompendium.core/Kompendium///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core/-kompendium/index.html"><span><span>Kompendium</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-1" pageid="kompendium-core::io.bkbn.kompendium.core/KompendiumPreFlight///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core/-kompendium-pre-flight/index.html"><span>Kompendium</span><wbr><span>Pre</span><wbr><span><span>Flight</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-2" pageid="kompendium-core::io.bkbn.kompendium.core/Kontent///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core/-kontent/index.html"><span><span>Kontent</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-0-3" pageid="kompendium-core::io.bkbn.kompendium.core/Notarized///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core/-notarized/index.html"><span><span>Notarized</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1" pageid="kompendium-core::io.bkbn.kompendium.core.constraint////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-1&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.constraint/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>constraint</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-0" pageid="kompendium-core::io.bkbn.kompendium.core.constraint//adjustForRequiredParams/io.bkbn.kompendium.oas.schema.ObjectSchema#kotlin.reflect.KClass[*]/PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.constraint/adjust-for-required-params.html"><span>adjust</span><wbr><span>For</span><wbr><span>Required</span><wbr><span><span>Params()</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-1-1" pageid="kompendium-core::io.bkbn.kompendium.core.constraint//scanForConstraints/io.bkbn.kompendium.oas.schema.ComponentSchema#kotlin.reflect.KType#kotlin.reflect.KProperty1[*,*]/PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.constraint/scan-for-constraints.html"><span>scan</span><wbr><span>For</span><wbr><span><span>Constraints()</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2" pageid="kompendium-core::io.bkbn.kompendium.core.handler////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-2&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.handler/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>handler</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-0" pageid="kompendium-core::io.bkbn.kompendium.core.handler/CollectionHandler///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.handler/-collection-handler/index.html"><span>Collection</span><wbr><span><span>Handler</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-1" pageid="kompendium-core::io.bkbn.kompendium.core.handler/EnumHandler///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.handler/-enum-handler/index.html"><span>Enum</span><wbr><span><span>Handler</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-2" pageid="kompendium-core::io.bkbn.kompendium.core.handler/MapHandler///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.handler/-map-handler/index.html"><span>Map</span><wbr><span><span>Handler</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-3" pageid="kompendium-core::io.bkbn.kompendium.core.handler/ObjectHandler///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.handler/-object-handler/index.html"><span>Object</span><wbr><span><span>Handler</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-2-4" pageid="kompendium-core::io.bkbn.kompendium.core.handler/SchemaHandler///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.handler/-schema-handler/index.html"><span>Schema</span><wbr><span><span>Handler</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3" pageid="kompendium-core::io.bkbn.kompendium.core.metadata////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-3&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.metadata/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>metadata</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-0" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ExceptionInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-exception-info/index.html"><span>Exception</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-1" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ParameterExample///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-parameter-example/index.html"><span>Parameter</span><wbr><span><span>Example</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-2" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/RequestInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-request-info/index.html"><span>Request</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-3-3" pageid="kompendium-core::io.bkbn.kompendium.core.metadata/ResponseInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata/-response-info/index.html"><span>Response</span><wbr><span><span>Info</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-4&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>metadata.</span><wbr><span>method</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-0" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/DeleteInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-delete-info/index.html"><span>Delete</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-1" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/GetInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-get-info/index.html"><span>Get</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-2" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/HeadInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-head-info/index.html"><span>Head</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-3" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/MethodInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-method-info/index.html"><span>Method</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-4" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/OptionsInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-options-info/index.html"><span>Options</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-5" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PatchInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-patch-info/index.html"><span>Patch</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-6" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PostInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-post-info/index.html"><span>Post</span><wbr><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-4-7" pageid="kompendium-core::io.bkbn.kompendium.core.metadata.method/PutInfo///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.metadata.method/-put-info/index.html"><span>Put</span><wbr><span><span>Info</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-5" pageid="kompendium-core::io.bkbn.kompendium.core.parser////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-5&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.parser/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>parser</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-5-0" pageid="kompendium-core::io.bkbn.kompendium.core.parser/DefaultMethodParser///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.parser/-default-method-parser/index.html"><span>Default</span><wbr><span>Method</span><wbr><span><span>Parser</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-5-1" pageid="kompendium-core::io.bkbn.kompendium.core.parser/IMethodParser///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.parser/-i-method-parser/index.html"><span>IMethod</span><wbr><span><span>Parser</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-6" pageid="kompendium-core::io.bkbn.kompendium.core.routes////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-6&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.routes/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>routes</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-6-0" pageid="kompendium-core::io.bkbn.kompendium.core.routes//redoc/io.ktor.routing.Routing#kotlin.String#kotlin.String/PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.routes/redoc.html"><span><span>redoc()</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-6-1" pageid="kompendium-core::io.bkbn.kompendium.core.routes//swagger/io.ktor.routing.Routing#kotlin.String#kotlin.String/PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.routes/swagger.html"><span><span>swagger()</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-7" pageid="kompendium-core::io.bkbn.kompendium.core.util////PointingToDeclaration//-1397293861">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-core-nav-submenu-7&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-core/io.bkbn.kompendium.core.util/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>util</span></a>
</div>
<div class="sideMenuPart" id="kompendium-core-nav-submenu-7-0" pageid="kompendium-core::io.bkbn.kompendium.core.util/Helpers///PointingToDeclaration//-1397293861">
<div class="overview">
<a href="../kompendium-core/io.bkbn.kompendium.core.util/-helpers/index.html"><span><span>Helpers</span></span></a>
</div>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-locations-nav-submenu" pageid="kompendium-locations::////PointingToDeclaration//-730534806">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-locations-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-locations/index.html"><span><span>kompendium-locations</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0" pageid="kompendium-locations::io.bkbn.kompendium.locations////PointingToDeclaration//-730534806">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-locations-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-locations/io.bkbn.kompendium.locations/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>locations</span></a>
</div>
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0-0" pageid="kompendium-locations::io.bkbn.kompendium.locations/LocationMethodParser///PointingToDeclaration//-730534806">
<div class="overview">
<a href="../kompendium-locations/io.bkbn.kompendium.locations/-location-method-parser/index.html"><span>Location</span><wbr><span>Method</span><wbr><span><span>Parser</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-locations-nav-submenu-0-1" pageid="kompendium-locations::io.bkbn.kompendium.locations/NotarizedLocation///PointingToDeclaration//-730534806">
<div class="overview">
<a href="../kompendium-locations/io.bkbn.kompendium.locations/-notarized-location/index.html"><span>Notarized</span><wbr><span><span>Location</span></span></a>
</div>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu" pageid="kompendium-oas::////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/index.html"><span><span>kompendium-oas</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-0" pageid="kompendium-oas::io.bkbn.kompendium.oas////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-0-0" pageid="kompendium-oas::io.bkbn.kompendium.oas/OpenApiSpec///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas/-open-api-spec/index.html"><span>Open</span><wbr><span>Api</span><wbr><span><span>Spec</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.common////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-1&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.common/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>common</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.common/ExternalDocumentation///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html"><span>External</span><wbr><span><span>Documentation</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-1-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.common/Tag///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.common/-tag/index.html"><span><span>Tag</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.component////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-2&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.component/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>component</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-2-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.component/Components///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.component/-components/index.html"><span><span>Components</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.info////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-3&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.info/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>info</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/Contact///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-contact/index.html"><span><span>Contact</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/Info///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-info/index.html"><span><span>Info</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-3-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.info/License///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.info/-license/index.html"><span><span>License</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.path////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-4&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.path/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>path</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.path/Path///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.path/-path/index.html"><span><span>Path</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-4-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.path/PathOperation///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.path/-path-operation/index.html"><span>Path</span><wbr><span><span>Operation</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-5&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>payload</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/AnyOfPayload///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-any-of-payload/index.html"><span>Any</span><wbr><span>Of</span><wbr><span><span>Payload</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/MediaType///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-media-type/index.html"><span>Media</span><wbr><span><span>Type</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Parameter///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html"><span><span>Parameter</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Payload///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-payload/index.html"><span><span>Payload</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Request///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-request/index.html"><span><span>Request</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-5-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.payload/Response///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.payload/-response/index.html"><span><span>Response</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-6&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>schema</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/AnyOfSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-any-of-schema/index.html"><span>Any</span><wbr><span>Of</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ArraySchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-array-schema/index.html"><span>Array</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ComponentSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-component-schema/index.html"><span>Component</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/DictionarySchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-dictionary-schema/index.html"><span>Dictionary</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/EnumSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-enum-schema/index.html"><span>Enum</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/FormattedSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-formatted-schema/index.html"><span>Formatted</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-6" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/FreeFormSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-free-form-schema/index.html"><span>Free</span><wbr><span>Form</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-7" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ObjectSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-object-schema/index.html"><span>Object</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-8" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/ReferencedSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-referenced-schema/index.html"><span>Referenced</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-9" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/SimpleSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-simple-schema/index.html"><span>Simple</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-6-10" pageid="kompendium-oas::io.bkbn.kompendium.oas.schema/TypedSchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.schema/-typed-schema/index.html"><span>Typed</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7" pageid="kompendium-oas::io.bkbn.kompendium.oas.security////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-7&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.security/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>security</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/ApiKeyAuth///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-api-key-auth/index.html"><span>Api</span><wbr><span>Key</span><wbr><span><span>Auth</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/BasicAuth///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-basic-auth/index.html"><span>Basic</span><wbr><span><span>Auth</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/BearerAuth///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-bearer-auth/index.html"><span>Bearer</span><wbr><span><span>Auth</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/OAuth///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-o-auth/index.html"><span><span>OAuth</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-7-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.security/SecuritySchema///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.security/-security-schema/index.html"><span>Security</span><wbr><span><span>Schema</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-8&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span><span>serialization</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/AnySerializer///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-any-serializer/index.html"><span>Any</span><wbr><span><span>Serializer</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/ComponentSchemaSerializer///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-component-schema-serializer/index.html"><span>Component</span><wbr><span>Schema</span><wbr><span><span>Serializer</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-2" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/KompendiumSerializersModule///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-kompendium-serializers-module/index.html"><span>Kompendium</span><wbr><span>Serializers</span><wbr><span><span>Module</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-3" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/NumberSerializer///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-number-serializer/index.html"><span>Number</span><wbr><span><span>Serializer</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-4" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/SecuritySchemaSerializer///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-security-schema-serializer/index.html"><span>Security</span><wbr><span>Schema</span><wbr><span><span>Serializer</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-8-5" pageid="kompendium-oas::io.bkbn.kompendium.oas.serialization/UriSerializer///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.serialization/-uri-serializer/index.html"><span>Uri</span><wbr><span><span>Serializer</span></span></a>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9" pageid="kompendium-oas::io.bkbn.kompendium.oas.server////PointingToDeclaration//218983047">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-oas-nav-submenu-9&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-oas/io.bkbn.kompendium.oas.server/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>oas.</span><wbr><span>server</span></a>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9-0" pageid="kompendium-oas::io.bkbn.kompendium.oas.server/Server///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.server/-server/index.html"><span><span>Server</span></span></a>
</div>
</div>
<div class="sideMenuPart" id="kompendium-oas-nav-submenu-9-1" pageid="kompendium-oas::io.bkbn.kompendium.oas.server/ServerVariable///PointingToDeclaration//218983047">
<div class="overview">
<a href="../kompendium-oas/io.bkbn.kompendium.oas.server/-server-variable/index.html"><span>Server</span><wbr><span><span>Variable</span></span></a>
</div>
</div>
</div>
</div>
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu" pageid="kompendium-swagger-ui::////PointingToDeclaration//-1695985917">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-swagger-ui-nav-submenu&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-swagger-ui/index.html"><span><span>kompendium-swagger-ui</span></span></a>
</div>
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu-0" pageid="kompendium-swagger-ui::io.bkbn.kompendium.swagger////PointingToDeclaration//-1695985917">
<div class="overview">
<span class="navButton" onclick="document.getElementById(&quot;kompendium-swagger-ui-nav-submenu-0&quot;).classList.toggle(&quot;hidden&quot;);"><span class="navButtonContent"></span></span><a href="../kompendium-swagger-ui/io.bkbn.kompendium.swagger/index.html"><span>io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>swagger</span></a>
</div>
<div class="sideMenuPart" id="kompendium-swagger-ui-nav-submenu-0-0" pageid="kompendium-swagger-ui::io.bkbn.kompendium.swagger//swaggerUI/io.ktor.routing.Routing#kotlin.String/PointingToDeclaration//-1695985917">
<div class="overview">
<a href="../kompendium-swagger-ui/io.bkbn.kompendium.swagger/swagger-u-i.html"><span>swagger</span><wbr><span><span>UI()</span></span></a>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,167 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>kompendium-core</title>
</head><body><link href="../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../";</script>
<script type="text/javascript" src="../scripts/sourceset_dependencies.js" async></script><link href="../styles/style.css" rel="Stylesheet"><link href="../styles/jetbrains-mono.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"><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><link href="../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../older/2.1.1/kompendium-core/index.html">2.1.1</a><a href="../older/2.1.0/kompendium-core/index.html">2.1.0</a><a href="../older/2.0.4/kompendium-core/index.html">2.0.4</a><a href="../older/2.0.3/kompendium-core/index.html">2.0.3</a><a href="../older/2.0.2/kompendium-core/index.html">2.0.2</a><a href="../older/2.0.1/kompendium-core/index.html">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-core::////PointingToDeclaration//-1397293861">
<div class="breadcrumbs"></div>
<div class="cover ">
<h1 class="cover"><span><span>kompendium-core</span></span></h1>
<div class="platform-hinted UnderCoverText" data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><p class="paragraph">This is where the magic happens. This module houses all the reflective goodness that powers Kompendium.</p><p class="paragraph">It is also the only mandatory client-facing module for a basic setup.</p></div></div>
</div>
<h2 class="">Packages</h2>
<div class="table"><a data-name="-1965787023%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core" id="-1965787023%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.core/index.html">io.bkbn.kompendium.core</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1965787023%2FPackages%2F-1397293861"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div><span class="brief-comment"><a data-name="-1965787023%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core" id="-1965787023%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<p class="paragraph">The root package contains several objects that power Kompendium, including the Kompendium Ktor Plugin, route notarization methods, and the reflection engine that analyzes method info type parameters.</p>
</span></div>
</div>
</div>
<a data-name="-845084994%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.constraint" id="-845084994%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.core.constraint/index.html">io.bkbn.kompendium.core.constraint</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-845084994%2FPackages%2F-1397293861"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div></div>
</div>
</div>
<a data-name="840967629%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.handler" id="840967629%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.core.handler/index.html">io.bkbn.kompendium.core.handler</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="840967629%2FPackages%2F-1397293861"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div></div>
</div>
</div>
<a data-name="327945552%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.metadata" id="327945552%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.core.metadata/index.html">io.bkbn.kompendium.core.metadata</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="327945552%2FPackages%2F-1397293861"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div><span class="brief-comment"><a data-name="327945552%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.metadata" id="327945552%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<p class="paragraph">Houses all interfaces and types related to describing route metadata.</p>
</span></div>
</div>
</div>
<a data-name="-286179709%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.metadata.method" id="-286179709%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.core.metadata.method/index.html">io.bkbn.kompendium.core.metadata.method</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-286179709%2FPackages%2F-1397293861"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div></div>
</div>
</div>
<a data-name="2092496384%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.parser" id="2092496384%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.core.parser/index.html">io.bkbn.kompendium.core.parser</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2092496384%2FPackages%2F-1397293861"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div><span class="brief-comment"><a data-name="2092496384%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.parser" id="2092496384%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<p class="paragraph">Responsible for the parse of method information. Base implementation is an interface to support extensibility as shown in the <code class="lang-kotlin">kompendium-locations</code> module.</p>
</span></div>
</div>
</div>
<a data-name="377184619%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.routes" id="377184619%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.core.routes/index.html">io.bkbn.kompendium.core.routes</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="377184619%2FPackages%2F-1397293861"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div><span class="brief-comment"><a data-name="377184619%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.routes" id="377184619%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<p class="paragraph">Houses any routes provided by the core module. At the moment the only supported route is to enable ReDoc support.</p>
</span></div>
</div>
</div>
<a data-name="-1975113757%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.util" id="-1975113757%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div>
<div class="main-subrow ">
<div class=""><span class="inline-flex">
<div><a href="io.bkbn.kompendium.core.util/index.html">io.bkbn.kompendium.core.util</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1975113757%2FPackages%2F-1397293861"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div class="pull-right"></div>
</div>
<div><span class="brief-comment"><a data-name="-1975113757%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.util" id="-1975113757%2FPackages%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<p class="paragraph">Collection of utility functions used by Kompendium</p>
</span></div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>adjustForRequiredParams</title>
</head><body><link href="../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../";</script>
<script type="text/javascript" src="../../scripts/sourceset_dependencies.js" async></script><link href="../../styles/style.css" rel="Stylesheet"><link href="../../styles/jetbrains-mono.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"><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><link href="../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.core.constraint/adjust-for-required-params.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="adjust-for-required-params.html">2.2.0</a><a href="../../older/2.1.1/kompendium-core/io.bkbn.kompendium.core.constraint/adjust-for-required-params.html">2.1.1</a><a href="../../older/2.1.0/kompendium-core/io.bkbn.kompendium.core.constraint/adjust-for-required-params.html">2.1.0</a><a href="../../not-found-version.html?v=2.0.4">2.0.4</a><a href="../../not-found-version.html?v=2.0.3">2.0.3</a><a href="../../not-found-version.html?v=2.0.2">2.0.2</a><a href="../../not-found-version.html?v=2.0.1">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-core::io.bkbn.kompendium.core.constraint//adjustForRequiredParams/io.bkbn.kompendium.oas.schema.ObjectSchema#kotlin.reflect.KClass[*]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../index.html">kompendium-core</a>/<a href="index.html">io.bkbn.kompendium.core.constraint</a>/<a href="adjust-for-required-params.html">adjustForRequiredParams</a></div>
<div class="cover ">
<h1 class="cover"><span>adjust</span><wbr><span>For</span><wbr><span>Required</span><wbr><span><span>Params</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="../../kompendium-oas/io.bkbn.kompendium.oas.schema/-object-schema/index.html">ObjectSchema</a><span class="token punctuation">.</span><a href="adjust-for-required-params.html"><span class="token function">adjustForRequiredParams</span></a><span class="token punctuation">(</span>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../kompendium-oas/io.bkbn.kompendium.oas.schema/-object-schema/index.html">ObjectSchema</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>handle</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.core.handler/-collection-handler/handle.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="handle.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-core/io.bkbn.kompendium.core.handler/-collection-handler/handle.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-core/io.bkbn.kompendium.core.handler/-collection-handler/handle.html">2.1.0</a><a href="../../../not-found-version.html?v=2.0.4">2.0.4</a><a href="../../../not-found-version.html?v=2.0.3">2.0.3</a><a href="../../../not-found-version.html?v=2.0.2">2.0.2</a><a href="../../../not-found-version.html?v=2.0.1">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-core::io.bkbn.kompendium.core.handler/CollectionHandler/handle/#kotlin.reflect.KType#kotlin.reflect.KClass[*]#kotlin.collections.MutableMap[kotlin.String,io.bkbn.kompendium.oas.schema.ComponentSchema]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a>/<a href="../index.html">io.bkbn.kompendium.core.handler</a>/<a href="index.html">CollectionHandler</a>/<a href="handle.html">handle</a></div>
<div class="cover ">
<h1 class="cover"><span><span>handle</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">fun </span><a href="handle.html"><span class="token function">handle</span></a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-type/index.html">KType</a><span class="token punctuation">, </span>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="token punctuation">, </span>cache<span class="token operator">: </span><a href="../../io.bkbn.kompendium.core.metadata/index.html#-1614018953%2FClasslikes%2F-1397293861">SchemaMap</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">Handler for when a <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html">Collection</a> is encountered</p><h2 class="">Parameters</h2><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>type</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Collection type information</p></div></div></div></div></div><div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>clazz</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Collection class information</p></div></div></div></div></div><div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>cache</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Existing schema map to append to</p></div></div></div></div></div></div></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,95 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>CollectionHandler</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.core.handler/-collection-handler/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-core/io.bkbn.kompendium.core.handler/-collection-handler/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-core/io.bkbn.kompendium.core.handler/-collection-handler/index.html">2.1.0</a><a href="../../../not-found-version.html?v=2.0.4">2.0.4</a><a href="../../../not-found-version.html?v=2.0.3">2.0.3</a><a href="../../../not-found-version.html?v=2.0.2">2.0.2</a><a href="../../../not-found-version.html?v=2.0.1">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-core::io.bkbn.kompendium.core.handler/CollectionHandler///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a>/<a href="../index.html">io.bkbn.kompendium.core.handler</a>/<a href="index.html">CollectionHandler</a></div>
<div class="cover ">
<h1 class="cover"><span>Collection</span><wbr><span><span>Handler</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">CollectionHandler</a> : <a href="../-schema-handler/index.html">SchemaHandler</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Functions">Functions</button></div>
<div class="tabs-section-body">
<h2 class="">Functions</h2>
<div class="table" data-togglable="Functions"><a data-name="-1133746056%2FFunctions%2F-1397293861" anchor-label="gatherSubTypes" id="-1133746056%2FFunctions%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-schema-handler/gather-sub-types.html"><span>gather</span><wbr><span>Sub</span><wbr><span><span>Types</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1133746056%2FFunctions%2F-1397293861"></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-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">fun </span><a href="../-schema-handler/gather-sub-types.html"><span class="token function">gatherSubTypes</span></a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-type/index.html">KType</a><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-type/index.html">KType</a><span class="token operator">&gt;</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="-613154194%2FFunctions%2F-1397293861" anchor-label="handle" id="-613154194%2FFunctions%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="handle.html"><span><span>handle</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-613154194%2FFunctions%2F-1397293861"></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-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">fun </span><a href="handle.html"><span class="token function">handle</span></a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-type/index.html">KType</a><span class="token punctuation">, </span>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="token punctuation">, </span>cache<span class="token operator">: </span><a href="../../io.bkbn.kompendium.core.metadata/index.html#-1614018953%2FClasslikes%2F-1397293861">SchemaMap</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">Handler for when a <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html">Collection</a> is encountered</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="2084552641%2FFunctions%2F-1397293861" anchor-label="postProcessSchema" id="2084552641%2FFunctions%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-schema-handler/post-process-schema.html"><span>post</span><wbr><span>Process</span><wbr><span><span>Schema</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2084552641%2FFunctions%2F-1397293861"></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-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">fun </span><a href="../-schema-handler/post-process-schema.html"><span class="token function">postProcessSchema</span></a><span class="token punctuation">(</span>schema<span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.schema/-component-schema/index.html">ComponentSchema</a><span class="token punctuation">, </span>slug<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">?</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.schema/-component-schema/index.html">ComponentSchema</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,43 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>handle</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.core.handler/-enum-handler/handle.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="handle.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-core/io.bkbn.kompendium.core.handler/-enum-handler/handle.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-core/io.bkbn.kompendium.core.handler/-enum-handler/handle.html">2.1.0</a><a href="../../../not-found-version.html?v=2.0.4">2.0.4</a><a href="../../../not-found-version.html?v=2.0.3">2.0.3</a><a href="../../../not-found-version.html?v=2.0.2">2.0.2</a><a href="../../../not-found-version.html?v=2.0.1">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-core::io.bkbn.kompendium.core.handler/EnumHandler/handle/#kotlin.reflect.KType#kotlin.reflect.KClass[*]#kotlin.collections.MutableMap[kotlin.String,io.bkbn.kompendium.oas.schema.ComponentSchema]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a>/<a href="../index.html">io.bkbn.kompendium.core.handler</a>/<a href="index.html">EnumHandler</a>/<a href="handle.html">handle</a></div>
<div class="cover ">
<h1 class="cover"><span><span>handle</span></span></h1>
</div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">fun </span><a href="handle.html"><span class="token function">handle</span></a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-type/index.html">KType</a><span class="token punctuation">, </span>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="token punctuation">, </span>cache<span class="token operator">: </span><a href="../../io.bkbn.kompendium.core.metadata/index.html#-1614018953%2FClasslikes%2F-1397293861">SchemaMap</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><p class="paragraph">Handler for when an <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a> is encountered</p><h2 class="">Parameters</h2><div data-togglable="Parameters"><div class="table" data-togglable="Parameters"><div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>type</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Map type information</p></div></div></div></div></div><div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>clazz</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Class of the object to analyze</p></div></div></div></div></div><div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"><div class="main-subrow keyValue WithExtraAttributes"><div class=""><span class="inline-flex"><div><span><span>cache</span></span></div></span></div><div><div class="title"><div data-togglable="Parameters"><p class="paragraph">Existing schema map to append to</p></div></div></div></div></div></div></div></div></div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

View File

@ -0,0 +1,95 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>EnumHandler</title>
</head><body><link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.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"><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><link href="../../../styles/multimodule.css" rel="Stylesheet"><script>const storage = localStorage.getItem("dokka-dark-mode")
const savedDarkMode = storage ? JSON.parse(storage) : false
if(savedDarkMode === true){
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}</script>
<div class="navigation-wrapper" id="navigation-wrapper">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<div class="library-name"><a href="../../../index.html"><span>kompendium</span></a></div>
<div><dokka-template-command data="{&quot;@class&quot;:&quot;org.jetbrains.dokka.base.templating.ReplaceVersionsCommand&quot;,&quot;location&quot;:&quot;io.bkbn.kompendium.core.handler/-enum-handler/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">2.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">2.2.0</a><a href="../../../older/2.1.1/kompendium-core/io.bkbn.kompendium.core.handler/-enum-handler/index.html">2.1.1</a><a href="../../../older/2.1.0/kompendium-core/io.bkbn.kompendium.core.handler/-enum-handler/index.html">2.1.0</a><a href="../../../not-found-version.html?v=2.0.4">2.0.4</a><a href="../../../not-found-version.html?v=2.0.3">2.0.3</a><a href="../../../not-found-version.html?v=2.0.2">2.0.2</a><a href="../../../not-found-version.html?v=2.0.1">2.0.1</a></div>
</div>
</dokka-template-command></div>
<div class="pull-right d-flex"><button id="theme-toggle-button"><span id="theme-toggle"></span></button>
<div id="searchBar"></div>
</div>
</div>
<div id="container">
<div id="leftColumn">
<div id="sideMenu"></div>
</div>
<div id="main">
<div class="main-content" id="content" pageids="kompendium-core::io.bkbn.kompendium.core.handler/EnumHandler///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a>/<a href="../index.html">io.bkbn.kompendium.core.handler</a>/<a href="index.html">EnumHandler</a></div>
<div class="cover ">
<h1 class="cover"><span>Enum</span><wbr><span><span>Handler</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">EnumHandler</a> : <a href="../-schema-handler/index.html">SchemaHandler</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Functions">Functions</button></div>
<div class="tabs-section-body">
<h2 class="">Functions</h2>
<div class="table" data-togglable="Functions"><a data-name="-1133746056%2FFunctions%2F-1397293861" anchor-label="gatherSubTypes" id="-1133746056%2FFunctions%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-schema-handler/gather-sub-types.html"><span>gather</span><wbr><span>Sub</span><wbr><span><span>Types</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1133746056%2FFunctions%2F-1397293861"></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-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">fun </span><a href="../-schema-handler/gather-sub-types.html"><span class="token function">gatherSubTypes</span></a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-type/index.html">KType</a><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-type/index.html">KType</a><span class="token operator">&gt;</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="871985835%2FFunctions%2F-1397293861" anchor-label="handle" id="871985835%2FFunctions%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="handle.html"><span><span>handle</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="871985835%2FFunctions%2F-1397293861"></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-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">fun </span><a href="handle.html"><span class="token function">handle</span></a><span class="token punctuation">(</span>type<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-type/index.html">KType</a><span class="token punctuation">, </span>clazz<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html">KClass</a><span class="token operator">&lt;</span><span class="token operator">*</span><span class="token operator">&gt;</span><span class="token punctuation">, </span>cache<span class="token operator">: </span><a href="../../io.bkbn.kompendium.core.metadata/index.html#-1614018953%2FClasslikes%2F-1397293861">SchemaMap</a><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div><div class="brief "><p class="paragraph">Handler for when an <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a> is encountered</p></div></div></div>
</div>
</div>
</div>
</div>
<a data-name="2084552641%2FFunctions%2F-1397293861" anchor-label="postProcessSchema" id="2084552641%2FFunctions%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a>
<div class="table-row" data-filterable-current=":kompendium-core:dokkaHtmlPartial/main" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex">
<div><a href="../-schema-handler/post-process-schema.html"><span>post</span><wbr><span>Process</span><wbr><span><span>Schema</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2084552641%2FFunctions%2F-1397293861"></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-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword"></span><span class="token keyword">fun </span><a href="../-schema-handler/post-process-schema.html"><span class="token function">postProcessSchema</span></a><span class="token punctuation">(</span>schema<span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.schema/-component-schema/index.html">ComponentSchema</a><span class="token punctuation">, </span>slug<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator">?</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.schema/-component-schema/index.html">ComponentSchema</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body></html>

Some files were not shown because too many files have changed in this diff Show More