Compare commits

..

11 Commits

Author SHA1 Message Date
95ae274f1d chore: prep for 3.3.0 (#319) 2022-09-15 13:27:17 +00:00
fdcc64d29c fix: Remove print statements for examples (#318) 2022-09-15 13:07:06 +00:00
4daf6e000e fix(deps): update dependency ch.qos.logback:logback-classic to v1.4.1 (#316)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-15 10:09:11 +00:00
ba19389f16 fix(deps): update dependency org.slf4j:slf4j-simple to v2.0.1 (#314)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-15 04:07:58 +00:00
e43627fa09 chore: enable recursion test (#315) 2022-09-14 21:45:10 +00:00
f1d252954b fix(deps): update dependency dev.forst:ktor-api-key to v2.1.1 (#313)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-07 17:29:04 +00:00
39d5c8b258 fix(deps): update ktor to v2.1.1 (#312)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-07 02:41:00 +00:00
28b844da6c fix(deps): update dependency ch.qos.logback:logback-classic to v1.4.0 (#311)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-29 11:32:46 +00:00
76e6b0a278 chore: bump kover version (#308) 2022-08-26 22:59:33 +00:00
8ea6a001c2 fix(deps): update dependency joda-time:joda-time to v2.11.1 (#307)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-25 20:33:23 +00:00
190b3c4abe doc: Added Latest Documentation 2022-08-23 12:19:26 +00:00
9602 changed files with 691314 additions and 98 deletions

View File

@ -28,4 +28,4 @@ jobs:
uses: burrunan/gradle-cache-action@v1
with:
gradle-version: wrapper
arguments: test koverCollectReports
arguments: test koverMergedReport

View File

@ -2,10 +2,6 @@
## Unreleased
- Support for @Transient annotation
- Support for @SerialName annotation on fields
- Supports for un-backed fields, by excluding them from the generated schema.
### Added
### Changed
@ -16,6 +12,19 @@
## Released
## [3.3.0] - September 15th, 2022
### Added
- Support for @Transient annotation
- Support for @SerialName annotation on fields
- Supports for un-backed fields, by excluding them from the generated schema.
### Changed
- Actually turned on detekt formatting 🤦
- Removed some rouge print statements
## Released
## [3.2.0] - August 23rd, 2022
### Added

View File

@ -1,12 +1,12 @@
plugins {
kotlin("jvm") version "1.7.10" apply false
kotlin("plugin.serialization") version "1.7.10" apply false
id("io.bkbn.sourdough.library.jvm") version "0.9.1" apply false
id("io.bkbn.sourdough.application.jvm") version "0.9.1" apply false
id("io.bkbn.sourdough.root") version "0.9.1"
id("io.bkbn.sourdough.library.jvm") version "0.9.2" apply false
id("io.bkbn.sourdough.application.jvm") version "0.9.2" apply false
id("io.bkbn.sourdough.root") version "0.9.2"
id("com.github.jakemarsden.git-hooks") version "0.0.2"
id("org.jetbrains.dokka") version "1.7.10"
id("org.jetbrains.kotlinx.kover") version "0.5.1"
id("org.jetbrains.kotlinx.kover") version "0.6.0"
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
}

View File

@ -9,6 +9,7 @@ plugins {
id("java-library")
id("signing")
id("java-test-fixtures")
id("org.jetbrains.kotlinx.kover")
}
sourdoughLibrary {
@ -21,6 +22,7 @@ dependencies {
// VERSIONS
val kotestVersion: String by project
val ktorVersion: String by project
val detektVersion: String by project
// IMPLEMENTATION
@ -32,7 +34,10 @@ dependencies {
implementation("io.ktor:ktor-server-html-builder:$ktorVersion")
implementation("io.ktor:ktor-server-content-negotiation:$ktorVersion")
implementation("io.ktor:ktor-serialization-kotlinx-json:$ktorVersion")
implementation("ch.qos.logback:logback-classic:1.2.11")
implementation("ch.qos.logback:logback-classic:1.4.1")
// Formatting
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:$detektVersion")
// TEST FIXTURES
@ -54,7 +59,7 @@ dependencies {
testFixturesApi("io.ktor:ktor-client:$ktorVersion")
testFixturesApi("io.ktor:ktor-client-cio:$ktorVersion")
testFixturesApi("dev.forst:ktor-api-key:2.1.0")
testFixturesApi("dev.forst:ktor-api-key:2.1.1")
testFixturesApi("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0")
}

View File

@ -13,7 +13,7 @@ class DeleteInfo private constructor(
override val operationId: String?,
override val deprecated: Boolean,
override val parameters: List<Parameter>
): MethodInfo {
) : MethodInfo {
companion object {
fun builder(init: Builder.() -> Unit): DeleteInfo {
@ -36,5 +36,4 @@ class DeleteInfo private constructor(
parameters = parameters
)
}
}

View File

@ -13,7 +13,7 @@ class GetInfo private constructor(
override val operationId: String?,
override val deprecated: Boolean,
override val parameters: List<Parameter>
): MethodInfo {
) : MethodInfo {
companion object {
fun builder(init: Builder.() -> Unit): GetInfo {
@ -36,5 +36,4 @@ class GetInfo private constructor(
parameters = parameters
)
}
}

View File

@ -13,7 +13,7 @@ class HeadInfo private constructor(
override val operationId: String?,
override val deprecated: Boolean,
override val parameters: List<Parameter>
): MethodInfo {
) : MethodInfo {
companion object {
fun builder(init: Builder.() -> Unit): HeadInfo {
@ -36,5 +36,4 @@ class HeadInfo private constructor(
parameters = parameters
)
}
}

View File

@ -3,7 +3,7 @@ package io.bkbn.kompendium.core.metadata
sealed interface MethodInfoWithRequest : MethodInfo {
val request: RequestInfo
abstract class Builder<T: MethodInfoWithRequest> : MethodInfo.Builder<T>() {
abstract class Builder<T : MethodInfoWithRequest> : MethodInfo.Builder<T>() {
internal var request: RequestInfo? = null
fun request(init: RequestInfo.Builder.() -> Unit) = apply {

View File

@ -13,7 +13,7 @@ class OptionsInfo private constructor(
override val operationId: String?,
override val deprecated: Boolean,
override val parameters: List<Parameter>
): MethodInfo {
) : MethodInfo {
companion object {
fun builder(init: Builder.() -> Unit): OptionsInfo {
@ -36,5 +36,4 @@ class OptionsInfo private constructor(
parameters = parameters
)
}
}

View File

@ -14,7 +14,7 @@ class PatchInfo private constructor(
override val operationId: String?,
override val deprecated: Boolean,
override val parameters: List<Parameter>
): MethodInfoWithRequest {
) : MethodInfoWithRequest {
companion object {
fun builder(init: Builder.() -> Unit): PatchInfo {
@ -38,5 +38,4 @@ class PatchInfo private constructor(
parameters = parameters
)
}
}

View File

@ -14,7 +14,7 @@ class PostInfo private constructor(
override val operationId: String?,
override val deprecated: Boolean,
override val parameters: List<Parameter>
): MethodInfoWithRequest {
) : MethodInfoWithRequest {
companion object {
fun builder(init: Builder.() -> Unit): PostInfo {
@ -38,5 +38,4 @@ class PostInfo private constructor(
parameters = parameters
)
}
}

View File

@ -14,7 +14,7 @@ class PutInfo private constructor(
override val operationId: String?,
override val deprecated: Boolean,
override val parameters: List<Parameter>
): MethodInfoWithRequest {
) : MethodInfoWithRequest {
companion object {
fun builder(init: Builder.() -> Unit): PutInfo {
@ -38,5 +38,4 @@ class PutInfo private constructor(
parameters = parameters
)
}
}

View File

@ -33,7 +33,6 @@ class RequestInfo private constructor(
fun examples(vararg e: Pair<String, Any>) = apply {
this.examples = e.toMap().mapValues { (_, v) -> MediaType.Example(v) }
println(this.examples)
}
fun build() = RequestInfo(
@ -42,5 +41,4 @@ class RequestInfo private constructor(
examples = examples
)
}
}

View File

@ -40,7 +40,6 @@ class ResponseInfo private constructor(
fun examples(vararg e: Pair<String, Any>) = apply {
this.examples = e.toMap().mapValues { (_, v) -> MediaType.Example(v) }
println(this.examples)
}
fun build() = ResponseInfo(

View File

@ -54,9 +54,9 @@ object NotarizedRoute {
pluginConfig.path?.addDefaultAuthMethods(authMethods)
require(spec.paths[routePath] == null) {
"""
The specified path ${Parameter.Location.path} has already been documented!
Please make sure that all notarized paths are unique
""".trimIndent()
The specified path ${Parameter.Location.path} has already been documented!
Please make sure that all notarized paths are unique
""".trimIndent()
}
spec.paths[routePath] = pluginConfig.path
?: error("This indicates a bug in Kompendium. Please file a GitHub issue!")

View File

@ -46,7 +46,7 @@ fun Route.redoc(pageTitle: String = "Docs", specUrl: String = "/openapi.json") {
}
}
body {
unsafe { +"<redoc spec-url='${specUrl}'></redoc>" }
unsafe { +"<redoc spec-url='$specUrl'></redoc>" }
script {
src = "https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js"
}

View File

@ -10,8 +10,8 @@ import io.bkbn.kompendium.core.metadata.PatchInfo
import io.bkbn.kompendium.core.metadata.PostInfo
import io.bkbn.kompendium.core.metadata.PutInfo
import io.bkbn.kompendium.core.metadata.ResponseInfo
import io.bkbn.kompendium.json.schema.SchemaGenerator
import io.bkbn.kompendium.json.schema.SchemaConfigurator
import io.bkbn.kompendium.json.schema.SchemaGenerator
import io.bkbn.kompendium.json.schema.definition.ReferenceDefinition
import io.bkbn.kompendium.json.schema.util.Helpers.getReferenceSlug
import io.bkbn.kompendium.json.schema.util.Helpers.getSimpleSlug

View File

@ -10,11 +10,6 @@ import io.bkbn.kompendium.core.util.TestModules.defaultAuthConfig
import io.bkbn.kompendium.core.util.TestModules.defaultField
import io.bkbn.kompendium.core.util.TestModules.defaultParameter
import io.bkbn.kompendium.core.util.TestModules.exampleParams
import io.bkbn.kompendium.core.util.TestModules.nestedUnderRoot
import io.bkbn.kompendium.core.util.TestModules.nonRequiredParams
import io.bkbn.kompendium.core.util.TestModules.notarizedDelete
import io.bkbn.kompendium.core.util.TestModules.notarizedGet
import io.bkbn.kompendium.core.util.TestModules.singleException
import io.bkbn.kompendium.core.util.TestModules.genericException
import io.bkbn.kompendium.core.util.TestModules.genericPolymorphicResponse
import io.bkbn.kompendium.core.util.TestModules.genericPolymorphicResponseMultipleImpls
@ -27,8 +22,11 @@ import io.bkbn.kompendium.core.util.TestModules.nestedGenericCollection
import io.bkbn.kompendium.core.util.TestModules.nestedGenericMultipleParamsCollection
import io.bkbn.kompendium.core.util.TestModules.nestedGenericResponse
import io.bkbn.kompendium.core.util.TestModules.nestedTypeName
import io.bkbn.kompendium.core.util.TestModules.nestedUnderRoot
import io.bkbn.kompendium.core.util.TestModules.nonRequiredParam
import io.bkbn.kompendium.core.util.TestModules.polymorphicException
import io.bkbn.kompendium.core.util.TestModules.nonRequiredParams
import io.bkbn.kompendium.core.util.TestModules.notarizedDelete
import io.bkbn.kompendium.core.util.TestModules.notarizedGet
import io.bkbn.kompendium.core.util.TestModules.notarizedHead
import io.bkbn.kompendium.core.util.TestModules.notarizedOptions
import io.bkbn.kompendium.core.util.TestModules.notarizedPatch
@ -39,6 +37,7 @@ import io.bkbn.kompendium.core.util.TestModules.nullableField
import io.bkbn.kompendium.core.util.TestModules.nullableNestedObject
import io.bkbn.kompendium.core.util.TestModules.nullableReference
import io.bkbn.kompendium.core.util.TestModules.polymorphicCollectionResponse
import io.bkbn.kompendium.core.util.TestModules.polymorphicException
import io.bkbn.kompendium.core.util.TestModules.polymorphicMapResponse
import io.bkbn.kompendium.core.util.TestModules.polymorphicResponse
import io.bkbn.kompendium.core.util.TestModules.primitives
@ -49,6 +48,7 @@ import io.bkbn.kompendium.core.util.TestModules.rootRoute
import io.bkbn.kompendium.core.util.TestModules.simpleGenericResponse
import io.bkbn.kompendium.core.util.TestModules.simplePathParsing
import io.bkbn.kompendium.core.util.TestModules.simpleRecursive
import io.bkbn.kompendium.core.util.TestModules.singleException
import io.bkbn.kompendium.core.util.TestModules.trailingSlash
import io.bkbn.kompendium.core.util.TestModules.unbackedFieldsResponse
import io.bkbn.kompendium.core.util.TestModules.withOperationId
@ -189,7 +189,9 @@ class KompendiumTest : DescribeSpec({
openApiTestAllSerializers("T0039__nested_generic_collection.json") { nestedGenericCollection() }
}
it("Can support nested generics with multiple type parameters") {
openApiTestAllSerializers("T0040__nested_generic_multiple_type_params.json") { nestedGenericMultipleParamsCollection() }
openApiTestAllSerializers("T0040__nested_generic_multiple_type_params.json") {
nestedGenericMultipleParamsCollection()
}
}
it("Can handle a really gnarly generic example") {
openApiTestAllSerializers("T0043__gnarly_generic_example.json") { gnarlyGenericResponse() }

View File

@ -1,6 +1,30 @@
package io.bkbn.kompendium.core.util
import io.bkbn.kompendium.core.fixtures.*
import io.bkbn.kompendium.core.fixtures.Barzo
import io.bkbn.kompendium.core.fixtures.ColumnSchema
import io.bkbn.kompendium.core.fixtures.ComplexRequest
import io.bkbn.kompendium.core.fixtures.DateTimeString
import io.bkbn.kompendium.core.fixtures.DefaultField
import io.bkbn.kompendium.core.fixtures.ExceptionResponse
import io.bkbn.kompendium.core.fixtures.Flibbity
import io.bkbn.kompendium.core.fixtures.FlibbityGibbit
import io.bkbn.kompendium.core.fixtures.Foosy
import io.bkbn.kompendium.core.fixtures.Gibbity
import io.bkbn.kompendium.core.fixtures.ManyThings
import io.bkbn.kompendium.core.fixtures.MultiNestedGenerics
import io.bkbn.kompendium.core.fixtures.Nested
import io.bkbn.kompendium.core.fixtures.NullableEnum
import io.bkbn.kompendium.core.fixtures.NullableField
import io.bkbn.kompendium.core.fixtures.Page
import io.bkbn.kompendium.core.fixtures.ProfileUpdateRequest
import io.bkbn.kompendium.core.fixtures.SerialNameObject
import io.bkbn.kompendium.core.fixtures.TestCreatedResponse
import io.bkbn.kompendium.core.fixtures.TestNested
import io.bkbn.kompendium.core.fixtures.TestRequest
import io.bkbn.kompendium.core.fixtures.TestResponse
import io.bkbn.kompendium.core.fixtures.TestSimpleRequest
import io.bkbn.kompendium.core.fixtures.TransientObject
import io.bkbn.kompendium.core.fixtures.UnbakcedObject
import io.bkbn.kompendium.core.metadata.DeleteInfo
import io.bkbn.kompendium.core.metadata.GetInfo
import io.bkbn.kompendium.core.metadata.HeadInfo

View File

@ -15,6 +15,13 @@ style:
excludeCommentStatements: true
MagicNumber:
excludes: ['**/kompendium-playground/**/*', '**/test/**/*']
ForbiddenMethodCall:
active: true
formatting:
Indentation:
indentSize: 2
ImportOrdering:
active: false
naming:
ConstructorParameterNaming:
active: false

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

151
docs/3.2.0/index.html Normal file
View File

@ -0,0 +1,151 @@
<!DOCTYPE html>
<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">
<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">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="older/3.1.0/index.html">3.1.0</a><a href="older/3.0.0/index.html">3.0.0</a><a href="older/2.3.4/index.html">2.3.4</a><a href="older/2.3.3/index.html">2.3.3</a><a href="older/2.3.2/index.html">2.3.2</a><a href="older/2.3.1/index.html">2.3.1</a><a href="older/2.3.0/index.html">2.3.0</a><a href="older/2.2.1/index.html">2.2.1</a><a href="older/2.2.0/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, non-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 Kompendium</h2>
<p class="paragraph">Kompendium's core features are comprised of a singular application level plugin and a collection of route level plugins. The former sets up your OpenApi spec along with various cross-route metadata and overrides such as custom types (useful for things like datetime libraries)</p>
<h3 class=""><code class="lang-kotlin">NotarizedApplication</code> plugin</h3>
<p class="paragraph">The notarized application plugin is installed at (surprise!) the app level</p>
<div class="sample-container">
<pre><code class="block lang-kotlin" theme="idea">private fun Application.mainModule() {<br> install(NotarizedApplication()) {<br> spec = OpenApiSpec(<br> // spec details go here ...<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>
<h3 class=""><code class="lang-kotlin">NotarizedRoute</code> plugin</h3>
<p class="paragraph">Notarized routes take advantage of Ktor 2's <a href="https://ktor.io/docs/plugins.html#install-route">route specific plugin</a> feature. This allows us to take individual routes, document them, and feed them back in to the application level plugin.</p>
<p class="paragraph">This also allows you to adopt Kompendium incrementally. Individual routes can be documented at your leisure, and is purely additive, meaning that you do not need to modify existing code to get documentation working, you just need new code!</p>
<p class="paragraph">Non-invasive FTW 🚀</p>
<p class="paragraph">Documenting a simple <code class="lang-kotlin">GET</code> endpoint would look something like this</p>
<div class="sample-container">
<pre><code class="block lang-kotlin" theme="idea">private fun Route.documentation() {<br> install(NotarizedRoute()) {<br> parameters = listOf(<br> Parameter(<br> name = &quot;id&quot;,<br> `in` = Parameter.Location.path,<br> schema = TypeDefinition.STRING<br> )<br> )<br> get = GetInfo.builder {<br> summary(&quot;Get user by id&quot;)<br> description(&quot;A very neat endpoint!&quot;)<br> response {<br> responseCode(HttpStatusCode.OK)<br> responseType&lt;ExampleResponse&gt;()<br> description(&quot;Will return whether or not the user is real 😱&quot;)<br> }<br> }<br> }<br>}<br><br><br>route(&quot;/{id}&quot;) {<br> documentation()<br> get {<br> call.respond(HttpStatusCode.OK, ExampleResponse(true))<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>
<p class="paragraph">Full details on application and route notarization can be found in the <code class="lang-kotlin">core</code> module</p>
<h2 class=""> The Playground</h2>
<p class="paragraph">In addition to the documentation available here, Kompendium has a number of out-of-the-box examples available in the playground module. Go ahead and fork the repo and run them directly on your machine to get a sense of what Kompendium can do!</p>
</div>
<h2 class="">All modules:</h2>
<div class="table"><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="-663309585%2FMain%2F0" anchor-label="kompendium-json-schema" id="-663309585%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-json-schema/index.html">kompendium-json-schema</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-663309585%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 handles converting Kotlin data classes to compliant <a href="https://json-schema.org">JsonSchema</a></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.</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>
</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,137 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>kompendium-core</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></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"></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">
<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">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../older/3.1.0/kompendium-core/index.html">3.1.0</a><a href="../older/3.0.0/kompendium-core/index.html">3.0.0</a><a href="../older/2.3.4/kompendium-core/index.html">2.3.4</a><a href="../older/2.3.3/kompendium-core/index.html">2.3.3</a><a href="../older/2.3.2/kompendium-core/index.html">2.3.2</a><a href="../older/2.3.1/kompendium-core/index.html">2.3.1</a><a href="../older/2.3.0/kompendium-core/index.html">2.3.0</a><a href="../older/2.2.1/kompendium-core/index.html">2.2.1</a><a href="../older/2.2.0/kompendium-core/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="846402143%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.attribute" id="846402143%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.attribute/index.html">io.bkbn.kompendium.core.attribute</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="846402143%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="1392556052%2FPackages%2F-1397293861" anchor-label="io.bkbn.kompendium.core.plugin" id="1392556052%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.plugin/index.html">io.bkbn.kompendium.core.plugin</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1392556052%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="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,96 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>KompendiumAttributes</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></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"></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">
<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.attribute/-kompendium-attributes/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.attribute/-kompendium-attributes/index.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.attribute/-kompendium-attributes/index.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.attribute/KompendiumAttributes///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.attribute</a><span class="delimiter">/</span><a href="index.html">KompendiumAttributes</a></div>
<div class="cover ">
<h1 class="cover"><span>Kompendium</span><wbr><span><span>Attributes</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">KompendiumAttributes</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="-786702837%2FProperties%2F-1397293861" anchor-label="openApiSpec" id="-786702837%2FProperties%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="open-api-spec.html"><span>open</span><wbr><span>Api</span><wbr><span><span>Spec</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-786702837%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-786702837%2FProperties%2F-1397293861" anchor-label="openApiSpec" id="-786702837%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="open-api-spec.html">openApiSpec</a><span class="token operator">: </span><span data-unresolved-link="io.ktor.util/AttributeKey///PointingToDeclaration/">AttributeKey</span><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas/-open-api-spec/index.html">OpenApiSpec</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="-1812233298%2FProperties%2F-1397293861" anchor-label="schemaConfigurator" id="-1812233298%2FProperties%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-configurator.html"><span>schema</span><wbr><span><span>Configurator</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1812233298%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1812233298%2FProperties%2F-1397293861" anchor-label="schemaConfigurator" id="-1812233298%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="schema-configurator.html">schemaConfigurator</a><span class="token operator">: </span><span data-unresolved-link="io.ktor.util/AttributeKey///PointingToDeclaration/">AttributeKey</span><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../../../kompendium-json-schema/io.bkbn.kompendium.json.schema/-schema-configurator/index.html">SchemaConfigurator</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>
</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>openApiSpec</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></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"></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">
<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.attribute/-kompendium-attributes/open-api-spec.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="open-api-spec.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.attribute/-kompendium-attributes/open-api-spec.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.attribute/-kompendium-attributes/open-api-spec.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.attribute/KompendiumAttributes/openApiSpec/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.attribute</a><span class="delimiter">/</span><a href="index.html">KompendiumAttributes</a><span class="delimiter">/</span><a href="open-api-spec.html">openApiSpec</a></div>
<div class="cover ">
<h1 class="cover"><span>open</span><wbr><span>Api</span><wbr><span><span>Spec</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">val </span><a href="open-api-spec.html">openApiSpec</a><span class="token operator">: </span><span data-unresolved-link="io.ktor.util/AttributeKey///PointingToDeclaration/">AttributeKey</span><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas/-open-api-spec/index.html">OpenApiSpec</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>schemaConfigurator</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></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"></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">
<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.attribute/-kompendium-attributes/schema-configurator.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="schema-configurator.html">3.2.0</a><a href="../../../not-found-version.html?v=3.1.0">3.1.0</a><a href="../../../not-found-version.html?v=3.0.0">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.attribute/KompendiumAttributes/schemaConfigurator/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.attribute</a><span class="delimiter">/</span><a href="index.html">KompendiumAttributes</a><span class="delimiter">/</span><a href="schema-configurator.html">schemaConfigurator</a></div>
<div class="cover ">
<h1 class="cover"><span>schema</span><wbr><span><span>Configurator</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">val </span><a href="schema-configurator.html">schemaConfigurator</a><span class="token operator">: </span><span data-unresolved-link="io.ktor.util/AttributeKey///PointingToDeclaration/">AttributeKey</span><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../../../kompendium-json-schema/io.bkbn.kompendium.json.schema/-schema-configurator/index.html">SchemaConfigurator</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 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 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>io.bkbn.kompendium.core.attribute</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></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"></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">
<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.attribute/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.attribute/index.html">3.1.0</a><a href="../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.attribute/index.html">3.0.0</a><a href="../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../not-found-version.html?v=2.1.0">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.attribute////PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../index.html">kompendium-core</a><span class="delimiter">/</span><a href="index.html">io.bkbn.kompendium.core.attribute</a></div>
<div class="cover ">
<h1 class="cover"><span>Package io.</span><wbr><span>bkbn.</span><wbr><span>kompendium.</span><wbr><span>core.</span><wbr><span>attribute</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="1996288955%2FClasslikes%2F-1397293861" anchor-label="KompendiumAttributes" id="1996288955%2FClasslikes%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="-kompendium-attributes/index.html"><span>Kompendium</span><wbr><span><span>Attributes</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1996288955%2FClasslikes%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">object </span><a href="-kompendium-attributes/index.html">KompendiumAttributes</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Builder</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></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"></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">
<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.metadata/-delete-info/-builder/-builder.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="-builder.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/-builder/-builder.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/-builder/-builder.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo.Builder/Builder/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">DeleteInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="-builder.html">Builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Builder</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="-builder.html"><span class="token function">Builder</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>build</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></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"></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">
<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.metadata/-delete-info/-builder/build.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="build.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/-builder/build.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/-builder/build.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo.Builder/build/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">DeleteInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="build.html">build</a></div>
<div class="cover ">
<h1 class="cover"><span><span>build</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="build.html"><span class="token function">build</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">DeleteInfo</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,233 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Builder</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></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"></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">
<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.metadata/-delete-info/-builder/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/-builder/index.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/-builder/index.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo.Builder///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">DeleteInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Builder</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">class </span><a href="index.html">Builder</a> : <a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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 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="Functions">Functions</button></div>
<div class="tabs-section-body">
<h2 class="tabbedcontent">Constructors</h2>
<div class="table" data-togglable="Constructors"><a data-name="522526794%2FConstructors%2F-1397293861" anchor-label="Builder" id="522526794%2FConstructors%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 TabbedContent">
<div class=""><span class="inline-flex">
<div><a href="-builder.html"><span><span>Builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="522526794%2FConstructors%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"></span><span class="token keyword">fun </span><a href="-builder.html"><span class="token function">Builder</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>
<h2 class="">Functions</h2>
<div class="table" data-togglable="Functions"><a data-name="190468791%2FFunctions%2F-1397293861" anchor-label="build" id="190468791%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="build.html"><span><span>build</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="190468791%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="build.html"><span class="token function">build</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">DeleteInfo</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="326139676%2FFunctions%2F-1397293861" anchor-label="canRespond" id="326139676%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="../../-method-info/-builder/can-respond.html"><span>can</span><wbr><span><span>Respond</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="326139676%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">responses<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="../../-response-info/index.html">ResponseInfo</a><span class="token operator">&gt;</span></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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="-1925885583%2FFunctions%2F-1397293861" anchor-label="description" id="-1925885583%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="../../-method-info/-builder/description.html"><span><span>description</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1925885583%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/description.html"><span class="token function">description</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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="947421081%2FFunctions%2F-1397293861" anchor-label="externalDocumentation" id="947421081%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="../../-method-info/-builder/external-documentation.html"><span>external</span><wbr><span><span>Documentation</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="947421081%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/external-documentation.html"><span class="token function">externalDocumentation</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">docs<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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="2099494638%2FFunctions%2F-1397293861" anchor-label="isDeprecated" id="2099494638%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="../../-method-info/-builder/is-deprecated.html"><span>is</span><wbr><span><span>Deprecated</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2099494638%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/is-deprecated.html"><span class="token function">isDeprecated</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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="495194583%2FFunctions%2F-1397293861" anchor-label="operationId" id="495194583%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="../../-method-info/-builder/operation-id.html"><span>operation</span><wbr><span><span>Id</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="495194583%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/operation-id.html"><span class="token function">operationId</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">id<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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="1990321695%2FFunctions%2F-1397293861" anchor-label="parameters" id="1990321695%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="../../-method-info/-builder/parameters.html"><span><span>parameters</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1990321695%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/parameters.html"><span class="token function">parameters</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>parameters<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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="-1194042259%2FFunctions%2F-1397293861" anchor-label="response" id="-1194042259%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="../../-method-info/-builder/response.html"><span><span>response</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1194042259%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/response.html"><span class="token function">response</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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="-1908958053%2FFunctions%2F-1397293861" anchor-label="summary" id="-1908958053%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="../../-method-info/-builder/summary.html"><span><span>summary</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1908958053%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/summary.html"><span class="token function">summary</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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="-1064266238%2FFunctions%2F-1397293861" anchor-label="tags" id="-1064266238%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="../../-method-info/-builder/tags.html"><span><span>tags</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1064266238%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/tags.html"><span class="token function">tags</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>tags<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">DeleteInfo</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>
</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>builder</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></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"></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">
<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.metadata/-delete-info/-companion/builder.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="builder.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/-companion/builder.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/-companion/builder.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo.Companion/builder/#kotlin.Function1[io.bkbn.kompendium.core.metadata.DeleteInfo.Builder,kotlin.Unit]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">DeleteInfo</a><span class="delimiter">/</span><a href="index.html">Companion</a><span class="delimiter">/</span><a href="builder.html">builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>builder</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="builder.html"><span class="token function">builder</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../-builder/index.html">DeleteInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">DeleteInfo</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,81 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Companion</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></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"></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">
<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.metadata/-delete-info/-companion/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/-companion/index.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/-companion/index.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo.Companion///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">DeleteInfo</a><span class="delimiter">/</span><a href="index.html">Companion</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Companion</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">Companion</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="-524847480%2FFunctions%2F-1397293861" anchor-label="builder" id="-524847480%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="builder.html"><span><span>builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-524847480%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"></span><span class="token keyword">fun </span><a href="builder.html"><span class="token function">builder</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../-builder/index.html">DeleteInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">DeleteInfo</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>deprecated</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></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"></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">
<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.metadata/-delete-info/deprecated.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="deprecated.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/deprecated.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/deprecated.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo/deprecated/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">DeleteInfo</a><span class="delimiter">/</span><a href="deprecated.html">deprecated</a></div>
<div class="cover ">
<h1 class="cover"><span><span>deprecated</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">val </span><a href="deprecated.html">deprecated</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>description</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></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"></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">
<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.metadata/-delete-info/description.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="description.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/description.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/description.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo/description/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">DeleteInfo</a><span class="delimiter">/</span><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-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>errors</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></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"></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">
<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.metadata/-delete-info/errors.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="errors.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/errors.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/errors.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo/errors/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">DeleteInfo</a><span class="delimiter">/</span><a href="errors.html">errors</a></div>
<div class="cover ">
<h1 class="cover"><span><span>errors</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">val </span><a href="errors.html">errors</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">MutableList</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../-response-info/index.html">ResponseInfo</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>externalDocumentation</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></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"></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">
<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.metadata/-delete-info/external-documentation.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="external-documentation.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/external-documentation.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/external-documentation.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo/externalDocumentation/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">DeleteInfo</a><span class="delimiter">/</span><a href="external-documentation.html">externalDocumentation</a></div>
<div class="cover ">
<h1 class="cover"><span>external</span><wbr><span><span>Documentation</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">val </span><a href="external-documentation.html">externalDocumentation</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</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,233 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>DeleteInfo</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></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"></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">
<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.metadata/-delete-info/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/index.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/index.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">DeleteInfo</a></div>
<div class="cover ">
<h1 class="cover"><span>Delete</span><wbr><span><span>Info</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">class </span><a href="index.html">DeleteInfo</a> : <a href="../-method-info/index.html">MethodInfo</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="Types">Types</button><button class="section-tab" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Types</h2>
<div class="table" data-togglable="Types"><a data-name="-2076733782%2FClasslikes%2F-1397293861" anchor-label="Builder" id="-2076733782%2FClasslikes%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="-builder/index.html"><span><span>Builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2076733782%2FClasslikes%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">class </span><a href="-builder/index.html">Builder</a> : <a href="../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">DeleteInfo</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="-2076668071%2FClasslikes%2F-1397293861" anchor-label="Companion" id="-2076668071%2FClasslikes%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="-companion/index.html"><span><span>Companion</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2076668071%2FClasslikes%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">object </span><a href="-companion/index.html">Companion</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="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-1593627211%2FProperties%2F-1397293861" anchor-label="deprecated" id="-1593627211%2FProperties%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="deprecated.html"><span><span>deprecated</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1593627211%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1593627211%2FProperties%2F-1397293861" anchor-label="deprecated" id="-1593627211%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="deprecated.html">deprecated</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</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="-687854506%2FProperties%2F-1397293861" anchor-label="description" id="-687854506%2FProperties%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="description.html"><span><span>description</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-687854506%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-687854506%2FProperties%2F-1397293861" anchor-label="description" id="-687854506%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </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="1111744637%2FProperties%2F-1397293861" anchor-label="errors" id="1111744637%2FProperties%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="errors.html"><span><span>errors</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1111744637%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="1111744637%2FProperties%2F-1397293861" anchor-label="errors" id="1111744637%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="errors.html">errors</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">MutableList</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../-response-info/index.html">ResponseInfo</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="519588035%2FProperties%2F-1397293861" anchor-label="externalDocumentation" id="519588035%2FProperties%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="external-documentation.html"><span>external</span><wbr><span><span>Documentation</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="519588035%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="519588035%2FProperties%2F-1397293861" anchor-label="externalDocumentation" id="519588035%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="external-documentation.html">externalDocumentation</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</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="1879227952%2FProperties%2F-1397293861" anchor-label="operationId" id="1879227952%2FProperties%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="operation-id.html"><span>operation</span><wbr><span><span>Id</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1879227952%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="1879227952%2FProperties%2F-1397293861" anchor-label="operationId" id="1879227952%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="operation-id.html">operationId</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="290467166%2FProperties%2F-1397293861" anchor-label="parameters" id="290467166%2FProperties%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="parameters.html"><span><span>parameters</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="290467166%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="290467166%2FProperties%2F-1397293861" anchor-label="parameters" id="290467166%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="parameters.html">parameters</a><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="../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</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="-1318981209%2FProperties%2F-1397293861" anchor-label="response" id="-1318981209%2FProperties%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="response.html"><span><span>response</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1318981209%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1318981209%2FProperties%2F-1397293861" anchor-label="response" id="-1318981209%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="response.html">response</a><span class="token operator">: </span><a href="../-response-info/index.html">ResponseInfo</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="-1831375252%2FProperties%2F-1397293861" anchor-label="summary" id="-1831375252%2FProperties%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="summary.html"><span><span>summary</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1831375252%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1831375252%2FProperties%2F-1397293861" anchor-label="summary" id="-1831375252%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="summary.html">summary</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="-768798129%2FProperties%2F-1397293861" anchor-label="tags" id="-768798129%2FProperties%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="tags.html"><span><span>tags</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-768798129%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-768798129%2FProperties%2F-1397293861" anchor-label="tags" id="-768798129%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="tags.html">tags</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</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>
</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>operationId</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></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"></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">
<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.metadata/-delete-info/operation-id.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="operation-id.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/operation-id.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/operation-id.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo/operationId/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">DeleteInfo</a><span class="delimiter">/</span><a href="operation-id.html">operationId</a></div>
<div class="cover ">
<h1 class="cover"><span>operation</span><wbr><span><span>Id</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">val </span><a href="operation-id.html">operationId</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>parameters</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></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"></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">
<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.metadata/-delete-info/parameters.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="parameters.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/parameters.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/parameters.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo/parameters/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">DeleteInfo</a><span class="delimiter">/</span><a href="parameters.html">parameters</a></div>
<div class="cover ">
<h1 class="cover"><span><span>parameters</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">val </span><a href="parameters.html">parameters</a><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="../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>response</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></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"></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">
<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.metadata/-delete-info/response.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="response.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/response.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/response.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo/response/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">DeleteInfo</a><span class="delimiter">/</span><a href="response.html">response</a></div>
<div class="cover ">
<h1 class="cover"><span><span>response</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">val </span><a href="response.html">response</a><span class="token operator">: </span><a href="../-response-info/index.html">ResponseInfo</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>summary</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></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"></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">
<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.metadata/-delete-info/summary.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="summary.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/summary.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/summary.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo/summary/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">DeleteInfo</a><span class="delimiter">/</span><a href="summary.html">summary</a></div>
<div class="cover ">
<h1 class="cover"><span><span>summary</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">val </span><a href="summary.html">summary</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>tags</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></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"></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">
<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.metadata/-delete-info/tags.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="tags.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/tags.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-delete-info/tags.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/DeleteInfo/tags/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">DeleteInfo</a><span class="delimiter">/</span><a href="tags.html">tags</a></div>
<div class="cover ">
<h1 class="cover"><span><span>tags</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">val </span><a href="tags.html">tags</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Builder</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></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"></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">
<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.metadata/-get-info/-builder/-builder.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="-builder.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/-builder/-builder.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/-builder/-builder.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo.Builder/Builder/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">GetInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="-builder.html">Builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Builder</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="-builder.html"><span class="token function">Builder</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>build</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></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"></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">
<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.metadata/-get-info/-builder/build.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="build.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/-builder/build.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/-builder/build.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo.Builder/build/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">GetInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="build.html">build</a></div>
<div class="cover ">
<h1 class="cover"><span><span>build</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="build.html"><span class="token function">build</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">GetInfo</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,233 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Builder</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></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"></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">
<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.metadata/-get-info/-builder/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/-builder/index.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/-builder/index.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo.Builder///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">GetInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Builder</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">class </span><a href="index.html">Builder</a> : <a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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 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="Functions">Functions</button></div>
<div class="tabs-section-body">
<h2 class="tabbedcontent">Constructors</h2>
<div class="table" data-togglable="Constructors"><a data-name="-1431010207%2FConstructors%2F-1397293861" anchor-label="Builder" id="-1431010207%2FConstructors%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 TabbedContent">
<div class=""><span class="inline-flex">
<div><a href="-builder.html"><span><span>Builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1431010207%2FConstructors%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"></span><span class="token keyword">fun </span><a href="-builder.html"><span class="token function">Builder</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>
<h2 class="">Functions</h2>
<div class="table" data-togglable="Functions"><a data-name="-1764634482%2FFunctions%2F-1397293861" anchor-label="build" id="-1764634482%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="build.html"><span><span>build</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1764634482%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="build.html"><span class="token function">build</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">GetInfo</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="326139676%2FFunctions%2F-1397293861" anchor-label="canRespond" id="326139676%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="../../-method-info/-builder/can-respond.html"><span>can</span><wbr><span><span>Respond</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="326139676%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">responses<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="../../-response-info/index.html">ResponseInfo</a><span class="token operator">&gt;</span></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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="-1925885583%2FFunctions%2F-1397293861" anchor-label="description" id="-1925885583%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="../../-method-info/-builder/description.html"><span><span>description</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1925885583%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/description.html"><span class="token function">description</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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="947421081%2FFunctions%2F-1397293861" anchor-label="externalDocumentation" id="947421081%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="../../-method-info/-builder/external-documentation.html"><span>external</span><wbr><span><span>Documentation</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="947421081%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/external-documentation.html"><span class="token function">externalDocumentation</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">docs<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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="2099494638%2FFunctions%2F-1397293861" anchor-label="isDeprecated" id="2099494638%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="../../-method-info/-builder/is-deprecated.html"><span>is</span><wbr><span><span>Deprecated</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2099494638%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/is-deprecated.html"><span class="token function">isDeprecated</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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="495194583%2FFunctions%2F-1397293861" anchor-label="operationId" id="495194583%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="../../-method-info/-builder/operation-id.html"><span>operation</span><wbr><span><span>Id</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="495194583%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/operation-id.html"><span class="token function">operationId</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">id<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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="1990321695%2FFunctions%2F-1397293861" anchor-label="parameters" id="1990321695%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="../../-method-info/-builder/parameters.html"><span><span>parameters</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1990321695%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/parameters.html"><span class="token function">parameters</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>parameters<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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="-1194042259%2FFunctions%2F-1397293861" anchor-label="response" id="-1194042259%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="../../-method-info/-builder/response.html"><span><span>response</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1194042259%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/response.html"><span class="token function">response</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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="-1908958053%2FFunctions%2F-1397293861" anchor-label="summary" id="-1908958053%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="../../-method-info/-builder/summary.html"><span><span>summary</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1908958053%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/summary.html"><span class="token function">summary</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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="-1064266238%2FFunctions%2F-1397293861" anchor-label="tags" id="-1064266238%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="../../-method-info/-builder/tags.html"><span><span>tags</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1064266238%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/tags.html"><span class="token function">tags</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>tags<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">GetInfo</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>
</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>builder</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></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"></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">
<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.metadata/-get-info/-companion/builder.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="builder.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/-companion/builder.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/-companion/builder.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo.Companion/builder/#kotlin.Function1[io.bkbn.kompendium.core.metadata.GetInfo.Builder,kotlin.Unit]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">GetInfo</a><span class="delimiter">/</span><a href="index.html">Companion</a><span class="delimiter">/</span><a href="builder.html">builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>builder</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="builder.html"><span class="token function">builder</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../-builder/index.html">GetInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">GetInfo</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,81 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Companion</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></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"></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">
<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.metadata/-get-info/-companion/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/-companion/index.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/-companion/index.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo.Companion///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">GetInfo</a><span class="delimiter">/</span><a href="index.html">Companion</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Companion</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">Companion</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="-1677289832%2FFunctions%2F-1397293861" anchor-label="builder" id="-1677289832%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="builder.html"><span><span>builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1677289832%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"></span><span class="token keyword">fun </span><a href="builder.html"><span class="token function">builder</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../-builder/index.html">GetInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">GetInfo</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>deprecated</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></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"></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">
<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.metadata/-get-info/deprecated.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="deprecated.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/deprecated.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/deprecated.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo/deprecated/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">GetInfo</a><span class="delimiter">/</span><a href="deprecated.html">deprecated</a></div>
<div class="cover ">
<h1 class="cover"><span><span>deprecated</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">val </span><a href="deprecated.html">deprecated</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>description</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></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"></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">
<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.metadata/-get-info/description.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="description.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/description.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/description.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo/description/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">GetInfo</a><span class="delimiter">/</span><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-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>errors</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></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"></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">
<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.metadata/-get-info/errors.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="errors.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/errors.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/errors.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo/errors/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">GetInfo</a><span class="delimiter">/</span><a href="errors.html">errors</a></div>
<div class="cover ">
<h1 class="cover"><span><span>errors</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">val </span><a href="errors.html">errors</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">MutableList</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../-response-info/index.html">ResponseInfo</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>externalDocumentation</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></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"></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">
<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.metadata/-get-info/external-documentation.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="external-documentation.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/external-documentation.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/external-documentation.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo/externalDocumentation/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">GetInfo</a><span class="delimiter">/</span><a href="external-documentation.html">externalDocumentation</a></div>
<div class="cover ">
<h1 class="cover"><span>external</span><wbr><span><span>Documentation</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">val </span><a href="external-documentation.html">externalDocumentation</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</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,233 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>GetInfo</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></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"></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">
<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.metadata/-get-info/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/index.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/index.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">GetInfo</a></div>
<div class="cover ">
<h1 class="cover"><span>Get</span><wbr><span><span>Info</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">class </span><a href="index.html">GetInfo</a> : <a href="../-method-info/index.html">MethodInfo</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="Types">Types</button><button class="section-tab" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Types</h2>
<div class="table" data-togglable="Types"><a data-name="1731983809%2FClasslikes%2F-1397293861" anchor-label="Builder" id="1731983809%2FClasslikes%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="-builder/index.html"><span><span>Builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1731983809%2FClasslikes%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">class </span><a href="-builder/index.html">Builder</a> : <a href="../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">GetInfo</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="-1211199312%2FClasslikes%2F-1397293861" anchor-label="Companion" id="-1211199312%2FClasslikes%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="-companion/index.html"><span><span>Companion</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1211199312%2FClasslikes%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">object </span><a href="-companion/index.html">Companion</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="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-533899458%2FProperties%2F-1397293861" anchor-label="deprecated" id="-533899458%2FProperties%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="deprecated.html"><span><span>deprecated</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-533899458%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-533899458%2FProperties%2F-1397293861" anchor-label="deprecated" id="-533899458%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="deprecated.html">deprecated</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</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="2098934765%2FProperties%2F-1397293861" anchor-label="description" id="2098934765%2FProperties%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="description.html"><span><span>description</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2098934765%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="2098934765%2FProperties%2F-1397293861" anchor-label="description" id="2098934765%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </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="403322502%2FProperties%2F-1397293861" anchor-label="errors" id="403322502%2FProperties%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="errors.html"><span><span>errors</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="403322502%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="403322502%2FProperties%2F-1397293861" anchor-label="errors" id="403322502%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="errors.html">errors</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">MutableList</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../-response-info/index.html">ResponseInfo</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="857472922%2FProperties%2F-1397293861" anchor-label="externalDocumentation" id="857472922%2FProperties%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="external-documentation.html"><span>external</span><wbr><span><span>Documentation</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="857472922%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="857472922%2FProperties%2F-1397293861" anchor-label="externalDocumentation" id="857472922%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="external-documentation.html">externalDocumentation</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</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="371049927%2FProperties%2F-1397293861" anchor-label="operationId" id="371049927%2FProperties%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="operation-id.html"><span>operation</span><wbr><span><span>Id</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="371049927%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="371049927%2FProperties%2F-1397293861" anchor-label="operationId" id="371049927%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="operation-id.html">operationId</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="1350194919%2FProperties%2F-1397293861" anchor-label="parameters" id="1350194919%2FProperties%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="parameters.html"><span><span>parameters</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1350194919%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="1350194919%2FProperties%2F-1397293861" anchor-label="parameters" id="1350194919%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="parameters.html">parameters</a><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="../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</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="787147120%2FProperties%2F-1397293861" anchor-label="response" id="787147120%2FProperties%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="response.html"><span><span>response</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="787147120%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="787147120%2FProperties%2F-1397293861" anchor-label="response" id="787147120%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="response.html">response</a><span class="token operator">: </span><a href="../-response-info/index.html">ResponseInfo</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="1977342339%2FProperties%2F-1397293861" anchor-label="summary" id="1977342339%2FProperties%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="summary.html"><span><span>summary</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1977342339%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="1977342339%2FProperties%2F-1397293861" anchor-label="summary" id="1977342339%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="summary.html">summary</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="544429720%2FProperties%2F-1397293861" anchor-label="tags" id="544429720%2FProperties%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="tags.html"><span><span>tags</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="544429720%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="544429720%2FProperties%2F-1397293861" anchor-label="tags" id="544429720%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="tags.html">tags</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</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>
</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>operationId</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></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"></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">
<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.metadata/-get-info/operation-id.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="operation-id.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/operation-id.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/operation-id.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo/operationId/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">GetInfo</a><span class="delimiter">/</span><a href="operation-id.html">operationId</a></div>
<div class="cover ">
<h1 class="cover"><span>operation</span><wbr><span><span>Id</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">val </span><a href="operation-id.html">operationId</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>parameters</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></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"></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">
<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.metadata/-get-info/parameters.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="parameters.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/parameters.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/parameters.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo/parameters/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">GetInfo</a><span class="delimiter">/</span><a href="parameters.html">parameters</a></div>
<div class="cover ">
<h1 class="cover"><span><span>parameters</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">val </span><a href="parameters.html">parameters</a><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="../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>response</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></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"></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">
<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.metadata/-get-info/response.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="response.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/response.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/response.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo/response/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">GetInfo</a><span class="delimiter">/</span><a href="response.html">response</a></div>
<div class="cover ">
<h1 class="cover"><span><span>response</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">val </span><a href="response.html">response</a><span class="token operator">: </span><a href="../-response-info/index.html">ResponseInfo</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>summary</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></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"></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">
<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.metadata/-get-info/summary.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="summary.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/summary.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/summary.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo/summary/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">GetInfo</a><span class="delimiter">/</span><a href="summary.html">summary</a></div>
<div class="cover ">
<h1 class="cover"><span><span>summary</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">val </span><a href="summary.html">summary</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>tags</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></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"></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">
<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.metadata/-get-info/tags.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="tags.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/tags.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-get-info/tags.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/GetInfo/tags/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">GetInfo</a><span class="delimiter">/</span><a href="tags.html">tags</a></div>
<div class="cover ">
<h1 class="cover"><span><span>tags</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">val </span><a href="tags.html">tags</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Builder</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></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"></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">
<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.metadata/-head-info/-builder/-builder.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="-builder.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/-builder/-builder.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/-builder/-builder.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo.Builder/Builder/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">HeadInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="-builder.html">Builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Builder</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="-builder.html"><span class="token function">Builder</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>build</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></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"></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">
<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.metadata/-head-info/-builder/build.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="build.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/-builder/build.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/-builder/build.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo.Builder/build/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">HeadInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="build.html">build</a></div>
<div class="cover ">
<h1 class="cover"><span><span>build</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="build.html"><span class="token function">build</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">HeadInfo</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,233 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Builder</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></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"></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">
<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.metadata/-head-info/-builder/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/-builder/index.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/-builder/index.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo.Builder///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">HeadInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Builder</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">class </span><a href="index.html">Builder</a> : <a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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 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="Functions">Functions</button></div>
<div class="tabs-section-body">
<h2 class="tabbedcontent">Constructors</h2>
<div class="table" data-togglable="Constructors"><a data-name="1052421621%2FConstructors%2F-1397293861" anchor-label="Builder" id="1052421621%2FConstructors%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 TabbedContent">
<div class=""><span class="inline-flex">
<div><a href="-builder.html"><span><span>Builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1052421621%2FConstructors%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"></span><span class="token keyword">fun </span><a href="-builder.html"><span class="token function">Builder</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>
<h2 class="">Functions</h2>
<div class="table" data-togglable="Functions"><a data-name="-1212330206%2FFunctions%2F-1397293861" anchor-label="build" id="-1212330206%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="build.html"><span><span>build</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1212330206%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="build.html"><span class="token function">build</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">HeadInfo</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="326139676%2FFunctions%2F-1397293861" anchor-label="canRespond" id="326139676%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="../../-method-info/-builder/can-respond.html"><span>can</span><wbr><span><span>Respond</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="326139676%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">responses<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="../../-response-info/index.html">ResponseInfo</a><span class="token operator">&gt;</span></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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="-1925885583%2FFunctions%2F-1397293861" anchor-label="description" id="-1925885583%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="../../-method-info/-builder/description.html"><span><span>description</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1925885583%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/description.html"><span class="token function">description</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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="947421081%2FFunctions%2F-1397293861" anchor-label="externalDocumentation" id="947421081%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="../../-method-info/-builder/external-documentation.html"><span>external</span><wbr><span><span>Documentation</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="947421081%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/external-documentation.html"><span class="token function">externalDocumentation</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">docs<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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="2099494638%2FFunctions%2F-1397293861" anchor-label="isDeprecated" id="2099494638%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="../../-method-info/-builder/is-deprecated.html"><span>is</span><wbr><span><span>Deprecated</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2099494638%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/is-deprecated.html"><span class="token function">isDeprecated</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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="495194583%2FFunctions%2F-1397293861" anchor-label="operationId" id="495194583%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="../../-method-info/-builder/operation-id.html"><span>operation</span><wbr><span><span>Id</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="495194583%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/operation-id.html"><span class="token function">operationId</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">id<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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="1990321695%2FFunctions%2F-1397293861" anchor-label="parameters" id="1990321695%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="../../-method-info/-builder/parameters.html"><span><span>parameters</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1990321695%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/parameters.html"><span class="token function">parameters</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>parameters<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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="-1194042259%2FFunctions%2F-1397293861" anchor-label="response" id="-1194042259%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="../../-method-info/-builder/response.html"><span><span>response</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1194042259%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/response.html"><span class="token function">response</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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="-1908958053%2FFunctions%2F-1397293861" anchor-label="summary" id="-1908958053%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="../../-method-info/-builder/summary.html"><span><span>summary</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1908958053%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/summary.html"><span class="token function">summary</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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="-1064266238%2FFunctions%2F-1397293861" anchor-label="tags" id="-1064266238%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="../../-method-info/-builder/tags.html"><span><span>tags</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1064266238%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/tags.html"><span class="token function">tags</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>tags<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../index.html">HeadInfo</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>
</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>builder</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></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"></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">
<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.metadata/-head-info/-companion/builder.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="builder.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/-companion/builder.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/-companion/builder.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo.Companion/builder/#kotlin.Function1[io.bkbn.kompendium.core.metadata.HeadInfo.Builder,kotlin.Unit]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">HeadInfo</a><span class="delimiter">/</span><a href="index.html">Companion</a><span class="delimiter">/</span><a href="builder.html">builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>builder</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="builder.html"><span class="token function">builder</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../-builder/index.html">HeadInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">HeadInfo</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,81 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Companion</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></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"></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">
<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.metadata/-head-info/-companion/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/-companion/index.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/-companion/index.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo.Companion///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">HeadInfo</a><span class="delimiter">/</span><a href="index.html">Companion</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Companion</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">Companion</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="-468562766%2FFunctions%2F-1397293861" anchor-label="builder" id="-468562766%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="builder.html"><span><span>builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-468562766%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"></span><span class="token keyword">fun </span><a href="builder.html"><span class="token function">builder</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../-builder/index.html">HeadInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../index.html">HeadInfo</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>deprecated</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></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"></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">
<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.metadata/-head-info/deprecated.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="deprecated.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/deprecated.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/deprecated.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo/deprecated/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">HeadInfo</a><span class="delimiter">/</span><a href="deprecated.html">deprecated</a></div>
<div class="cover ">
<h1 class="cover"><span><span>deprecated</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">val </span><a href="deprecated.html">deprecated</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>description</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></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"></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">
<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.metadata/-head-info/description.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="description.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/description.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/description.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo/description/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">HeadInfo</a><span class="delimiter">/</span><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-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>errors</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></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"></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">
<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.metadata/-head-info/errors.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="errors.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/errors.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/errors.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo/errors/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">HeadInfo</a><span class="delimiter">/</span><a href="errors.html">errors</a></div>
<div class="cover ">
<h1 class="cover"><span><span>errors</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">val </span><a href="errors.html">errors</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">MutableList</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../-response-info/index.html">ResponseInfo</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>externalDocumentation</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></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"></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">
<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.metadata/-head-info/external-documentation.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="external-documentation.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/external-documentation.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/external-documentation.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo/externalDocumentation/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">HeadInfo</a><span class="delimiter">/</span><a href="external-documentation.html">externalDocumentation</a></div>
<div class="cover ">
<h1 class="cover"><span>external</span><wbr><span><span>Documentation</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">val </span><a href="external-documentation.html">externalDocumentation</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</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,233 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>HeadInfo</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></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"></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">
<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.metadata/-head-info/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/index.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/index.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">HeadInfo</a></div>
<div class="cover ">
<h1 class="cover"><span>Head</span><wbr><span><span>Info</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">class </span><a href="index.html">HeadInfo</a> : <a href="../-method-info/index.html">MethodInfo</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="Types">Types</button><button class="section-tab" data-togglable="Properties">Properties</button></div>
<div class="tabs-section-body">
<h2 class="">Types</h2>
<div class="table" data-togglable="Types"><a data-name="-2080442539%2FClasslikes%2F-1397293861" anchor-label="Builder" id="-2080442539%2FClasslikes%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="-builder/index.html"><span><span>Builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2080442539%2FClasslikes%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">class </span><a href="-builder/index.html">Builder</a> : <a href="../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">HeadInfo</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="-1345816252%2FClasslikes%2F-1397293861" anchor-label="Companion" id="-1345816252%2FClasslikes%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="-companion/index.html"><span><span>Companion</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1345816252%2FClasslikes%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">object </span><a href="-companion/index.html">Companion</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="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="-412057302%2FProperties%2F-1397293861" anchor-label="deprecated" id="-412057302%2FProperties%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="deprecated.html"><span><span>deprecated</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-412057302%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-412057302%2FProperties%2F-1397293861" anchor-label="deprecated" id="-412057302%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="deprecated.html">deprecated</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</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="1581074305%2FProperties%2F-1397293861" anchor-label="description" id="1581074305%2FProperties%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="description.html"><span><span>description</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1581074305%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="1581074305%2FProperties%2F-1397293861" anchor-label="description" id="1581074305%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </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="-689490318%2FProperties%2F-1397293861" anchor-label="errors" id="-689490318%2FProperties%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="errors.html"><span><span>errors</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-689490318%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-689490318%2FProperties%2F-1397293861" anchor-label="errors" id="-689490318%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="errors.html">errors</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">MutableList</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="../-response-info/index.html">ResponseInfo</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="-1623610834%2FProperties%2F-1397293861" anchor-label="externalDocumentation" id="-1623610834%2FProperties%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="external-documentation.html"><span>external</span><wbr><span><span>Documentation</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1623610834%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1623610834%2FProperties%2F-1397293861" anchor-label="externalDocumentation" id="-1623610834%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="external-documentation.html">externalDocumentation</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</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="-146810533%2FProperties%2F-1397293861" anchor-label="operationId" id="-146810533%2FProperties%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="operation-id.html"><span>operation</span><wbr><span><span>Id</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-146810533%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-146810533%2FProperties%2F-1397293861" anchor-label="operationId" id="-146810533%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="operation-id.html">operationId</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="1472037075%2FProperties%2F-1397293861" anchor-label="parameters" id="1472037075%2FProperties%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="parameters.html"><span><span>parameters</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1472037075%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="1472037075%2FProperties%2F-1397293861" anchor-label="parameters" id="1472037075%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="parameters.html">parameters</a><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="../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</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="-1433952676%2FProperties%2F-1397293861" anchor-label="response" id="-1433952676%2FProperties%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="response.html"><span><span>response</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1433952676%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1433952676%2FProperties%2F-1397293861" anchor-label="response" id="-1433952676%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="response.html">response</a><span class="token operator">: </span><a href="../-response-info/index.html">ResponseInfo</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="-1835084009%2FProperties%2F-1397293861" anchor-label="summary" id="-1835084009%2FProperties%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="summary.html"><span><span>summary</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1835084009%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1835084009%2FProperties%2F-1397293861" anchor-label="summary" id="-1835084009%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="summary.html">summary</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="-64527996%2FProperties%2F-1397293861" anchor-label="tags" id="-64527996%2FProperties%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="tags.html"><span><span>tags</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-64527996%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-64527996%2FProperties%2F-1397293861" anchor-label="tags" id="-64527996%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core:dokkaHtmlPartial/main"></a><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">override </span><span class="token keyword">val </span><a href="tags.html">tags</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</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>
</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>operationId</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></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"></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">
<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.metadata/-head-info/operation-id.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="operation-id.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/operation-id.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/operation-id.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo/operationId/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">HeadInfo</a><span class="delimiter">/</span><a href="operation-id.html">operationId</a></div>
<div class="cover ">
<h1 class="cover"><span>operation</span><wbr><span><span>Id</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">val </span><a href="operation-id.html">operationId</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>parameters</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></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"></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">
<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.metadata/-head-info/parameters.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="parameters.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/parameters.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/parameters.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo/parameters/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">HeadInfo</a><span class="delimiter">/</span><a href="parameters.html">parameters</a></div>
<div class="cover ">
<h1 class="cover"><span><span>parameters</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">val </span><a href="parameters.html">parameters</a><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="../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>response</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></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"></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">
<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.metadata/-head-info/response.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="response.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/response.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/response.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo/response/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">HeadInfo</a><span class="delimiter">/</span><a href="response.html">response</a></div>
<div class="cover ">
<h1 class="cover"><span><span>response</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">val </span><a href="response.html">response</a><span class="token operator">: </span><a href="../-response-info/index.html">ResponseInfo</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>summary</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></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"></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">
<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.metadata/-head-info/summary.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="summary.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/summary.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/summary.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo/summary/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">HeadInfo</a><span class="delimiter">/</span><a href="summary.html">summary</a></div>
<div class="cover ">
<h1 class="cover"><span><span>summary</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">val </span><a href="summary.html">summary</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>tags</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></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"></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">
<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.metadata/-head-info/tags.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="tags.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/tags.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-head-info/tags.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/HeadInfo/tags/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">HeadInfo</a><span class="delimiter">/</span><a href="tags.html">tags</a></div>
<div class="cover ">
<h1 class="cover"><span><span>tags</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">val </span><a href="tags.html">tags</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Builder</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></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"></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">
<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.metadata/-method-info-with-request/-builder/-builder.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="-builder.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info-with-request/-builder/-builder.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info-with-request/-builder/-builder.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfoWithRequest.Builder/Builder/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfoWithRequest</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="-builder.html">Builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Builder</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="-builder.html"><span class="token function">Builder</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,283 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Builder</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></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"></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">
<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.metadata/-method-info-with-request/-builder/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info-with-request/-builder/index.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info-with-request/-builder/index.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfoWithRequest.Builder///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfoWithRequest</a><span class="delimiter">/</span><a href="index.html">Builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Builder</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">abstract </span><span class="token keyword">class </span><a href="index.html">Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</a><span class="token operator"> : </span><a href="../index.html">MethodInfoWithRequest</a><span class="token operator">&gt;</span> : <a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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="Functions">Functions</button><button class="section-tab" data-togglable="Inheritors">Inheritors</button></div>
<div class="tabs-section-body">
<h2 class="tabbedcontent">Constructors</h2>
<div class="table" data-togglable="Constructors"><a data-name="-486731189%2FConstructors%2F-1397293861" anchor-label="Builder" id="-486731189%2FConstructors%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 TabbedContent">
<div class=""><span class="inline-flex">
<div><a href="-builder.html"><span><span>Builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-486731189%2FConstructors%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"></span><span class="token keyword">fun </span><a href="-builder.html"><span class="token function">Builder</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>
<h2 class="">Functions</h2>
<div class="table" data-togglable="Functions"><a data-name="391668161%2FFunctions%2F-1397293861" anchor-label="build" id="391668161%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="../../-method-info/-builder/build.html"><span><span>build</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="391668161%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">abstract </span><span class="token keyword"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/build.html"><span class="token function">build</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">T</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="326139676%2FFunctions%2F-1397293861" anchor-label="canRespond" id="326139676%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="../../-method-info/-builder/can-respond.html"><span>can</span><wbr><span><span>Respond</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="326139676%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">responses<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="../../-response-info/index.html">ResponseInfo</a><span class="token operator">&gt;</span></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="-1925885583%2FFunctions%2F-1397293861" anchor-label="description" id="-1925885583%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="../../-method-info/-builder/description.html"><span><span>description</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1925885583%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/description.html"><span class="token function">description</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="947421081%2FFunctions%2F-1397293861" anchor-label="externalDocumentation" id="947421081%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="../../-method-info/-builder/external-documentation.html"><span>external</span><wbr><span><span>Documentation</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="947421081%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/external-documentation.html"><span class="token function">externalDocumentation</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">docs<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="2099494638%2FFunctions%2F-1397293861" anchor-label="isDeprecated" id="2099494638%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="../../-method-info/-builder/is-deprecated.html"><span>is</span><wbr><span><span>Deprecated</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2099494638%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/is-deprecated.html"><span class="token function">isDeprecated</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="495194583%2FFunctions%2F-1397293861" anchor-label="operationId" id="495194583%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="../../-method-info/-builder/operation-id.html"><span>operation</span><wbr><span><span>Id</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="495194583%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/operation-id.html"><span class="token function">operationId</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">id<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="1990321695%2FFunctions%2F-1397293861" anchor-label="parameters" id="1990321695%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="../../-method-info/-builder/parameters.html"><span><span>parameters</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1990321695%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/parameters.html"><span class="token function">parameters</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>parameters<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="899690136%2FFunctions%2F-1397293861" anchor-label="request" id="899690136%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="request.html"><span><span>request</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="899690136%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"></span><span class="token keyword">fun </span><a href="request.html"><span class="token function">request</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-request-info/-builder/index.html">RequestInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfoWithRequest.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="-1194042259%2FFunctions%2F-1397293861" anchor-label="response" id="-1194042259%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="../../-method-info/-builder/response.html"><span><span>response</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1194042259%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/response.html"><span class="token function">response</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="-1908958053%2FFunctions%2F-1397293861" anchor-label="summary" id="-1908958053%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="../../-method-info/-builder/summary.html"><span><span>summary</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1908958053%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/summary.html"><span class="token function">summary</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="-1064266238%2FFunctions%2F-1397293861" anchor-label="tags" id="-1064266238%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="../../-method-info/-builder/tags.html"><span><span>tags</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1064266238%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"></span><span class="token keyword">fun </span><a href="../../-method-info/-builder/tags.html"><span class="token function">tags</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>tags<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="../../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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>
</div>
<h2 class="">Inheritors</h2>
<div class="table" data-togglable="Inheritors"><a data-name="-1707527217%2FInheritors%2F-1397293861" anchor-label="Builder" id="-1707527217%2FInheritors%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="../../-patch-info/-builder/index.html">Builder</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1707527217%2FInheritors%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>
</div>
</div>
<a data-name="-2023299947%2FInheritors%2F-1397293861" anchor-label="Builder" id="-2023299947%2FInheritors%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="../../-post-info/-builder/index.html">Builder</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2023299947%2FInheritors%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>
</div>
</div>
<a data-name="123266472%2FInheritors%2F-1397293861" anchor-label="Builder" id="123266472%2FInheritors%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="../../-put-info/-builder/index.html">Builder</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="123266472%2FInheritors%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>
</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>request</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></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"></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">
<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.metadata/-method-info-with-request/-builder/request.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="request.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info-with-request/-builder/request.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info-with-request/-builder/request.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfoWithRequest.Builder/request/#kotlin.Function1[io.bkbn.kompendium.core.metadata.RequestInfo.Builder,kotlin.Unit]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfoWithRequest</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="request.html">request</a></div>
<div class="cover ">
<h1 class="cover"><span><span>request</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="request.html"><span class="token function">request</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-request-info/-builder/index.html">RequestInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfoWithRequest.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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,268 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>MethodInfoWithRequest</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></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"></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">
<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.metadata/-method-info-with-request/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info-with-request/index.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info-with-request/index.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfoWithRequest///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">MethodInfoWithRequest</a></div>
<div class="cover ">
<h1 class="cover"><span>Method</span><wbr><span>Info</span><wbr><span>With</span><wbr><span><span>Request</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">interface </span><a href="index.html">MethodInfoWithRequest</a> : <a href="../-method-info/index.html">MethodInfo</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="Types">Types</button><button class="section-tab" data-togglable="Properties">Properties</button><button class="section-tab" data-togglable="Inheritors">Inheritors</button></div>
<div class="tabs-section-body">
<h2 class="">Types</h2>
<div class="table" data-togglable="Types"><a data-name="-721546837%2FClasslikes%2F-1397293861" anchor-label="Builder" id="-721546837%2FClasslikes%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="-builder/index.html"><span><span>Builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-721546837%2FClasslikes%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">abstract </span><span class="token keyword">class </span><a href="-builder/index.html">Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="-builder/index.html">T</a><span class="token operator"> : </span><a href="index.html">MethodInfoWithRequest</a><span class="token operator">&gt;</span> : <a href="../-method-info/-builder/index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="-builder/index.html">T</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>
</div>
<h2 class="">Properties</h2>
<div class="table" data-togglable="Properties"><a data-name="1002736363%2FProperties%2F-1397293861" anchor-label="deprecated" id="1002736363%2FProperties%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="../-method-info/deprecated.html"><span><span>deprecated</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1002736363%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="1002736363%2FProperties%2F-1397293861" anchor-label="deprecated" id="1002736363%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core: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="../-method-info/deprecated.html">deprecated</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</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="-1804962336%2FProperties%2F-1397293861" anchor-label="description" id="-1804962336%2FProperties%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="../-method-info/description.html"><span><span>description</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1804962336%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1804962336%2FProperties%2F-1397293861" anchor-label="description" id="-1804962336%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core: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="../-method-info/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="-1635759949%2FProperties%2F-1397293861" anchor-label="errors" id="-1635759949%2FProperties%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="../-method-info/errors.html"><span><span>errors</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1635759949%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1635759949%2FProperties%2F-1397293861" anchor-label="errors" id="-1635759949%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core: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="../-method-info/errors.html">errors</a><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="../-response-info/index.html">ResponseInfo</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="438545869%2FProperties%2F-1397293861" anchor-label="externalDocumentation" id="438545869%2FProperties%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="../-method-info/external-documentation.html"><span>external</span><wbr><span><span>Documentation</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="438545869%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="438545869%2FProperties%2F-1397293861" anchor-label="externalDocumentation" id="438545869%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core: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="../-method-info/external-documentation.html">externalDocumentation</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</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="762120122%2FProperties%2F-1397293861" anchor-label="operationId" id="762120122%2FProperties%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="../-method-info/operation-id.html"><span>operation</span><wbr><span><span>Id</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="762120122%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="762120122%2FProperties%2F-1397293861" anchor-label="operationId" id="762120122%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core: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="../-method-info/operation-id.html">operationId</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="-1408136556%2FProperties%2F-1397293861" anchor-label="parameters" id="-1408136556%2FProperties%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="../-method-info/parameters.html"><span><span>parameters</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1408136556%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1408136556%2FProperties%2F-1397293861" anchor-label="parameters" id="-1408136556%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core: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="../-method-info/parameters.html">parameters</a><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="../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</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="1298763428%2FProperties%2F-1397293861" anchor-label="request" id="1298763428%2FProperties%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="request.html"><span><span>request</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1298763428%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="1298763428%2FProperties%2F-1397293861" anchor-label="request" id="1298763428%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core: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="request.html">request</a><span class="token operator">: </span><a href="../-request-info/index.html">RequestInfo</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="-266001315%2FProperties%2F-1397293861" anchor-label="response" id="-266001315%2FProperties%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="../-method-info/response.html"><span><span>response</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-266001315%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-266001315%2FProperties%2F-1397293861" anchor-label="response" id="-266001315%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core: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="../-method-info/response.html">response</a><span class="token operator">: </span><a href="../-response-info/index.html">ResponseInfo</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="-1104671498%2FProperties%2F-1397293861" anchor-label="summary" id="-1104671498%2FProperties%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="../-method-info/summary.html"><span><span>summary</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1104671498%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="-1104671498%2FProperties%2F-1397293861" anchor-label="summary" id="-1104671498%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core: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="../-method-info/summary.html">summary</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="2075267077%2FProperties%2F-1397293861" anchor-label="tags" id="2075267077%2FProperties%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="../-method-info/tags.html"><span><span>tags</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2075267077%2FProperties%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" data-togglable="Properties"><div class="content sourceset-depenent-content" data-active="" data-togglable=":kompendium-core:dokkaHtmlPartial/main"><a data-name="2075267077%2FProperties%2F-1397293861" anchor-label="tags" id="2075267077%2FProperties%2F-1397293861" data-filterable-set=":kompendium-core: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="../-method-info/tags.html">tags</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</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>
</div>
<h2 class="">Inheritors</h2>
<div class="table" data-togglable="Inheritors"><a data-name="1778376124%2FInheritors%2F-1397293861" anchor-label="PatchInfo" id="1778376124%2FInheritors%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="../-patch-info/index.html">PatchInfo</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1778376124%2FInheritors%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>
</div>
</div>
<a data-name="-1166691198%2FInheritors%2F-1397293861" anchor-label="PostInfo" id="-1166691198%2FInheritors%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="../-post-info/index.html">PostInfo</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1166691198%2FInheritors%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>
</div>
</div>
<a data-name="1163360405%2FInheritors%2F-1397293861" anchor-label="PutInfo" id="1163360405%2FInheritors%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="../-put-info/index.html">PutInfo</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1163360405%2FInheritors%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>
</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>request</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></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"></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">
<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.metadata/-method-info-with-request/request.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="request.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info-with-request/request.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info-with-request/request.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfoWithRequest/request/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">MethodInfoWithRequest</a><span class="delimiter">/</span><a href="request.html">request</a></div>
<div class="cover ">
<h1 class="cover"><span><span>request</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">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="request.html">request</a><span class="token operator">: </span><a href="../-request-info/index.html">RequestInfo</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Builder</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></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"></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">
<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.metadata/-method-info/-builder/-builder.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="-builder.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/-builder.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/-builder.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/Builder/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="-builder.html">Builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Builder</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="-builder.html"><span class="token function">Builder</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>build</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></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"></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">
<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.metadata/-method-info/-builder/build.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="build.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/build.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/build.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/build/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="build.html">build</a></div>
<div class="cover ">
<h1 class="cover"><span><span>build</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">abstract </span><span class="token keyword"></span><span class="token keyword">fun </span><a href="build.html"><span class="token function">build</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">T</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>canRespond</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></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"></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">
<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.metadata/-method-info/-builder/can-respond.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="can-respond.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/can-respond.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/can-respond.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/canRespond/#kotlin.Function1[io.bkbn.kompendium.core.metadata.ResponseInfo.Builder,kotlin.Unit]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="can-respond.html">canRespond</a></div>
<div class="cover ">
<h1 class="cover"><span>can</span><wbr><span><span>Respond</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="can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">responses<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="../../-response-info/index.html">ResponseInfo</a><span class="token operator">&gt;</span></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>description</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></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"></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">
<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.metadata/-method-info/-builder/description.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="description.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/description.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/description.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/description/#kotlin.String/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><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-core:dokkaHtmlPartial/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="description.html"><span class="token function">description</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>externalDocumentation</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></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"></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">
<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.metadata/-method-info/-builder/external-documentation.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="external-documentation.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/external-documentation.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/external-documentation.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/externalDocumentation/#io.bkbn.kompendium.oas.common.ExternalDocumentation/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="external-documentation.html">externalDocumentation</a></div>
<div class="cover ">
<h1 class="cover"><span>external</span><wbr><span><span>Documentation</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="external-documentation.html"><span class="token function">externalDocumentation</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">docs<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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,290 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Builder</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></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"></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">
<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.metadata/-method-info/-builder/index.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="index.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/index.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/index.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder///PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a></div>
<div class="cover ">
<h1 class="cover"><span><span>Builder</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">abstract </span><span class="token keyword">class </span><a href="index.html">Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</a><span class="token operator"> : </span><a href="../index.html">MethodInfo</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 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="Functions">Functions</button><button class="section-tab" data-togglable="Inheritors">Inheritors</button></div>
<div class="tabs-section-body">
<h2 class="tabbedcontent">Constructors</h2>
<div class="table" data-togglable="Constructors"><a data-name="601593044%2FConstructors%2F-1397293861" anchor-label="Builder" id="601593044%2FConstructors%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 TabbedContent">
<div class=""><span class="inline-flex">
<div><a href="-builder.html"><span><span>Builder</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="601593044%2FConstructors%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"></span><span class="token keyword">fun </span><a href="-builder.html"><span class="token function">Builder</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>
<h2 class="">Functions</h2>
<div class="table" data-togglable="Functions"><a data-name="391668161%2FFunctions%2F-1397293861" anchor-label="build" id="391668161%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="build.html"><span><span>build</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="391668161%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">abstract </span><span class="token keyword"></span><span class="token keyword">fun </span><a href="build.html"><span class="token function">build</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">T</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="326139676%2FFunctions%2F-1397293861" anchor-label="canRespond" id="326139676%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="can-respond.html"><span>can</span><wbr><span><span>Respond</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="326139676%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"></span><span class="token keyword">fun </span><a href="can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="can-respond.html"><span class="token function">canRespond</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">responses<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="../../-response-info/index.html">ResponseInfo</a><span class="token operator">&gt;</span></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="-1925885583%2FFunctions%2F-1397293861" anchor-label="description" id="-1925885583%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="description.html"><span><span>description</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1925885583%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"></span><span class="token keyword">fun </span><a href="description.html"><span class="token function">description</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="947421081%2FFunctions%2F-1397293861" anchor-label="externalDocumentation" id="947421081%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="external-documentation.html"><span>external</span><wbr><span><span>Documentation</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="947421081%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"></span><span class="token keyword">fun </span><a href="external-documentation.html"><span class="token function">externalDocumentation</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">docs<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="2099494638%2FFunctions%2F-1397293861" anchor-label="isDeprecated" id="2099494638%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="is-deprecated.html"><span>is</span><wbr><span><span>Deprecated</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2099494638%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"></span><span class="token keyword">fun </span><a href="is-deprecated.html"><span class="token function">isDeprecated</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="495194583%2FFunctions%2F-1397293861" anchor-label="operationId" id="495194583%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="operation-id.html"><span>operation</span><wbr><span><span>Id</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="495194583%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"></span><span class="token keyword">fun </span><a href="operation-id.html"><span class="token function">operationId</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">id<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="1990321695%2FFunctions%2F-1397293861" anchor-label="parameters" id="1990321695%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="parameters.html"><span><span>parameters</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1990321695%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"></span><span class="token keyword">fun </span><a href="parameters.html"><span class="token function">parameters</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>parameters<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="-1194042259%2FFunctions%2F-1397293861" anchor-label="response" id="-1194042259%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="response.html"><span><span>response</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1194042259%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"></span><span class="token keyword">fun </span><a href="response.html"><span class="token function">response</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="-1908958053%2FFunctions%2F-1397293861" anchor-label="summary" id="-1908958053%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="summary.html"><span><span>summary</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1908958053%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"></span><span class="token keyword">fun </span><a href="summary.html"><span class="token function">summary</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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="-1064266238%2FFunctions%2F-1397293861" anchor-label="tags" id="-1064266238%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="tags.html"><span><span>tags</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1064266238%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"></span><span class="token keyword">fun </span><a href="tags.html"><span class="token function">tags</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>tags<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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>
</div>
<h2 class="">Inheritors</h2>
<div class="table" data-togglable="Inheritors"><a data-name="-2076733782%2FInheritors%2F-1397293861" anchor-label="Builder" id="-2076733782%2FInheritors%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="../../-delete-info/-builder/index.html">Builder</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2076733782%2FInheritors%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>
</div>
</div>
<a data-name="1731983809%2FInheritors%2F-1397293861" anchor-label="Builder" id="1731983809%2FInheritors%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="../../-get-info/-builder/index.html">Builder</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1731983809%2FInheritors%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>
</div>
</div>
<a data-name="-2080442539%2FInheritors%2F-1397293861" anchor-label="Builder" id="-2080442539%2FInheritors%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="../../-head-info/-builder/index.html">Builder</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2080442539%2FInheritors%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>
</div>
</div>
<a data-name="-721546837%2FInheritors%2F-1397293861" anchor-label="Builder" id="-721546837%2FInheritors%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="../../-method-info-with-request/-builder/index.html">Builder</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-721546837%2FInheritors%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>
</div>
</div>
<a data-name="500496121%2FInheritors%2F-1397293861" anchor-label="Builder" id="500496121%2FInheritors%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="../../-options-info/-builder/index.html">Builder</a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="500496121%2FInheritors%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>
</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>isDeprecated</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></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"></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">
<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.metadata/-method-info/-builder/is-deprecated.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="is-deprecated.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/is-deprecated.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/is-deprecated.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/isDeprecated/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="is-deprecated.html">isDeprecated</a></div>
<div class="cover ">
<h1 class="cover"><span>is</span><wbr><span><span>Deprecated</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="is-deprecated.html"><span class="token function">isDeprecated</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>operationId</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></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"></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">
<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.metadata/-method-info/-builder/operation-id.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="operation-id.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/operation-id.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/operation-id.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/operationId/#kotlin.String/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="operation-id.html">operationId</a></div>
<div class="cover ">
<h1 class="cover"><span>operation</span><wbr><span><span>Id</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="operation-id.html"><span class="token function">operationId</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">id<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>parameters</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></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"></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">
<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.metadata/-method-info/-builder/parameters.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="parameters.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/parameters.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/parameters.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/parameters/#kotlin.Array[io.bkbn.kompendium.oas.payload.Parameter]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="parameters.html">parameters</a></div>
<div class="cover ">
<h1 class="cover"><span><span>parameters</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="parameters.html"><span class="token function">parameters</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>parameters<span class="token operator">: </span><a href="../../../../kompendium-oas/io.bkbn.kompendium.oas.payload/-parameter/index.html">Parameter</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>response</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></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"></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">
<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.metadata/-method-info/-builder/response.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="response.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/response.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/response.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/response/#kotlin.Function1[io.bkbn.kompendium.core.metadata.ResponseInfo.Builder,kotlin.Unit]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="response.html">response</a></div>
<div class="cover ">
<h1 class="cover"><span><span>response</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="response.html"><span class="token function">response</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">init<span class="token operator">: </span><span class="token keyword"></span><a href="../../-response-info/-builder/index.html">ResponseInfo.Builder</a><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></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>summary</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></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"></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">
<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.metadata/-method-info/-builder/summary.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="summary.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/summary.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/summary.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/summary/#kotlin.String/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="summary.html">summary</a></div>
<div class="cover ">
<h1 class="cover"><span><span>summary</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="summary.html"><span class="token function">summary</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">s<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>tags</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></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"></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">
<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.metadata/-method-info/-builder/tags.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="tags.html">3.2.0</a><a href="../../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/tags.html">3.1.0</a><a href="../../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/-builder/tags.html">3.0.0</a><a href="../../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo.Builder/tags/#kotlin.Array[kotlin.String]/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="../index.html">MethodInfo</a><span class="delimiter">/</span><a href="index.html">Builder</a><span class="delimiter">/</span><a href="tags.html">tags</a></div>
<div class="cover ">
<h1 class="cover"><span><span>tags</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="tags.html"><span class="token function">tags</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">vararg </span>tags<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></span></span><span class="token punctuation">)</span><span class="token operator">: </span><a href="index.html">MethodInfo.Builder</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="index.html">T</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>deprecated</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></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"></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">
<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.metadata/-method-info/deprecated.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="deprecated.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/deprecated.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/deprecated.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo/deprecated/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">MethodInfo</a><span class="delimiter">/</span><a href="deprecated.html">deprecated</a></div>
<div class="cover ">
<h1 class="cover"><span><span>deprecated</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"></span><span class="token keyword">val </span><a href="deprecated.html">deprecated</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>description</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></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"></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">
<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.metadata/-method-info/description.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="description.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/description.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/description.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo/description/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">MethodInfo</a><span class="delimiter">/</span><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-core: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="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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>errors</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></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"></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">
<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.metadata/-method-info/errors.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="errors.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/errors.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/errors.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo/errors/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">MethodInfo</a><span class="delimiter">/</span><a href="errors.html">errors</a></div>
<div class="cover ">
<h1 class="cover"><span><span>errors</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">abstract </span><span class="token keyword"></span><span class="token keyword">val </span><a href="errors.html">errors</a><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="../-response-info/index.html">ResponseInfo</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 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,59 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>externalDocumentation</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></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"></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">
<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.metadata/-method-info/external-documentation.html&quot;}"><div class="versions-dropdown">
<div class="versions-dropdown-button">3.2.0</div>
<div class="versions-dropdown-data"><a href="external-documentation.html">3.2.0</a><a href="../../../older/3.1.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/external-documentation.html">3.1.0</a><a href="../../../older/3.0.0/kompendium-core/io.bkbn.kompendium.core.metadata/-method-info/external-documentation.html">3.0.0</a><a href="../../../not-found-version.html?v=2.3.4">2.3.4</a><a href="../../../not-found-version.html?v=2.3.3">2.3.3</a><a href="../../../not-found-version.html?v=2.3.2">2.3.2</a><a href="../../../not-found-version.html?v=2.3.1">2.3.1</a><a href="../../../not-found-version.html?v=2.3.0">2.3.0</a><a href="../../../not-found-version.html?v=2.2.1">2.2.1</a><a href="../../../not-found-version.html?v=2.2.0">2.2.0</a><a href="../../../not-found-version.html?v=2.1.1">2.1.1</a><a href="../../../not-found-version.html?v=2.1.0">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.metadata/MethodInfo/externalDocumentation/#/PointingToDeclaration//-1397293861">
<div class="breadcrumbs"><a href="../../index.html">kompendium-core</a><span class="delimiter">/</span><a href="../index.html">io.bkbn.kompendium.core.metadata</a><span class="delimiter">/</span><a href="index.html">MethodInfo</a><span class="delimiter">/</span><a href="external-documentation.html">externalDocumentation</a></div>
<div class="cover ">
<h1 class="cover"><span>external</span><wbr><span><span>Documentation</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"></span><span class="token keyword">val </span><a href="external-documentation.html">externalDocumentation</a><span class="token operator">: </span><a href="../../../kompendium-oas/io.bkbn.kompendium.oas.common/-external-documentation/index.html">ExternalDocumentation</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>

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