Updated dependencies and snapshot
This commit is contained in:
parent
3d6101d165
commit
45e2915a01
33 changed files with 507 additions and 502 deletions
|
@ -1,5 +1,5 @@
|
||||||
[](https://opensource.org/licenses/BSD-3-Clause)
|
[](https://opensource.org/licenses/BSD-3-Clause)
|
||||||
[](https://kotlinlang.org/)
|
[](https://kotlinlang.org/)
|
||||||
[](https://oss.sonatype.org/content/repositories/snapshots/net/thauvin/erik/bitly-shorten/)
|
[](https://oss.sonatype.org/content/repositories/snapshots/net/thauvin/erik/bitly-shorten/)
|
||||||
[](https://github.com/ethauvin/bitly-shorten/releases/latest)
|
[](https://github.com/ethauvin/bitly-shorten/releases/latest)
|
||||||
[](https://search.maven.org/search?q=g:%22net.thauvin.erik%22%20AND%20a:%22bitly-shorten%22)
|
[](https://search.maven.org/search?q=g:%22net.thauvin.erik%22%20AND%20a:%22bitly-shorten%22)
|
||||||
|
|
|
@ -5,18 +5,18 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
import java.net.URL
|
import java.net.URL
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("com.github.ben-manes.versions") version "0.46.0"
|
id("com.github.ben-manes.versions") version "0.47.0"
|
||||||
id("io.gitlab.arturbosch.detekt") version "1.22.0"
|
id("io.gitlab.arturbosch.detekt") version "1.23.0"
|
||||||
id("java")
|
id("java")
|
||||||
id("java-library")
|
id("java-library")
|
||||||
id("maven-publish")
|
id("maven-publish")
|
||||||
id("net.thauvin.erik.gradle.semver") version "1.0.4"
|
id("net.thauvin.erik.gradle.semver") version "1.0.4"
|
||||||
id("org.jetbrains.dokka") version "1.8.10"
|
id("org.jetbrains.dokka") version "1.8.20"
|
||||||
id("org.jetbrains.kotlinx.kover") version "0.6.1"
|
id("org.jetbrains.kotlinx.kover") version "0.7.2"
|
||||||
id("org.sonarqube") version "4.0.0.2929"
|
id("org.sonarqube") version "4.2.1.3168"
|
||||||
id("signing")
|
id("signing")
|
||||||
kotlin("jvm") version "1.8.20"
|
kotlin("jvm") version "1.8.22"
|
||||||
kotlin("kapt") version "1.8.20"
|
kotlin("kapt") version "1.8.22"
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "net.thauvin.erik"
|
group = "net.thauvin.erik"
|
||||||
|
@ -32,7 +32,7 @@ var semverProcessor = "net.thauvin.erik:semver:1.2.0"
|
||||||
val publicationName = "mavenJava"
|
val publicationName = "mavenJava"
|
||||||
|
|
||||||
object Versions {
|
object Versions {
|
||||||
const val OKHTTP = "4.10.0"
|
const val OKHTTP = "4.11.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
fun isNonStable(version: String): Boolean {
|
fun isNonStable(version: String): Boolean {
|
||||||
|
@ -52,11 +52,11 @@ dependencies {
|
||||||
|
|
||||||
implementation("com.squareup.okhttp3:okhttp:${Versions.OKHTTP}")
|
implementation("com.squareup.okhttp3:okhttp:${Versions.OKHTTP}")
|
||||||
implementation("com.squareup.okhttp3:logging-interceptor:${Versions.OKHTTP}")
|
implementation("com.squareup.okhttp3:logging-interceptor:${Versions.OKHTTP}")
|
||||||
implementation("org.json:json:20230227")
|
implementation("org.json:json:20230618")
|
||||||
|
|
||||||
testImplementation(kotlin("test"))
|
testImplementation(kotlin("test"))
|
||||||
testImplementation(kotlin("test-junit"))
|
testImplementation(kotlin("test-junit"))
|
||||||
testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.25")
|
testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.26.1")
|
||||||
}
|
}
|
||||||
|
|
||||||
kapt {
|
kapt {
|
||||||
|
@ -76,13 +76,24 @@ java {
|
||||||
withSourcesJar()
|
withSourcesJar()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
koverReport {
|
||||||
|
defaults {
|
||||||
|
xml {
|
||||||
|
onCheck = true
|
||||||
|
}
|
||||||
|
html {
|
||||||
|
onCheck = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
sonarqube {
|
sonarqube {
|
||||||
properties {
|
properties {
|
||||||
property("sonar.projectKey", "ethauvin_$name")
|
property("sonar.projectKey", "ethauvin_$name")
|
||||||
property("sonar.organization", "ethauvin-github")
|
property("sonar.organization", "ethauvin-github")
|
||||||
property("sonar.host.url", "https://sonarcloud.io")
|
property("sonar.host.url", "https://sonarcloud.io")
|
||||||
property("sonar.sourceEncoding", "UTF-8")
|
property("sonar.sourceEncoding", "UTF-8")
|
||||||
property("sonar.coverage.jacoco.xmlReportPaths", "${project.buildDir}/reports/kover/xml/report.xml")
|
property("sonar.coverage.jacoco.xmlReportPaths", "${project.buildDir}/reports/kover/report.xml")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,9 +127,6 @@ tasks {
|
||||||
destination = file("$projectDir/pom.xml")
|
destination = file("$projectDir/pom.xml")
|
||||||
}
|
}
|
||||||
|
|
||||||
assemble {
|
|
||||||
dependsOn(koverReport)
|
|
||||||
}
|
|
||||||
|
|
||||||
clean {
|
clean {
|
||||||
doLast {
|
doLast {
|
||||||
|
@ -191,10 +199,6 @@ tasks {
|
||||||
group = PublishingPlugin.PUBLISH_TASK_GROUP
|
group = PublishingPlugin.PUBLISH_TASK_GROUP
|
||||||
dependsOn(wrapper, "deploy", gitTag, publishToMavenLocal)
|
dependsOn(wrapper, "deploy", gitTag, publishToMavenLocal)
|
||||||
}
|
}
|
||||||
|
|
||||||
"sonar" {
|
|
||||||
dependsOn(koverReport)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">data </span><span class="token keyword">class </span><a href="index.html">Builder</a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">var </span>domain<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>Constants.EMPTY<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>title<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>Constants.EMPTY<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>group_guid<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>Constants.EMPTY<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>tags<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</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">></span><span class="token operator"> = </span>emptyArray()<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>deeplinks<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a><span class="token operator"><</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </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">></span><span class="token operator">></span><span class="token operator"> = </span>emptyArray()<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>long_url<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>Constants.EMPTY<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>toJson<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span></span></span><span class="token punctuation">)</span><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/config/CreateConfig.kt#L54">source</a>)</span></span></div><p class="paragraph">Configures the creation parameters of a Bitlink.</p><p class="paragraph">See the <a href="https://dev.bitly.com/api-reference#createFullBitlink">Bit.ly API</a> for more information.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">data </span><span class="token keyword">class </span><a href="index.html">Builder</a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">var </span>domain<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>Constants.EMPTY<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>title<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>Constants.EMPTY<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>group_guid<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>Constants.EMPTY<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>tags<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</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">></span><span class="token operator"> = </span>emptyArray()<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>deeplinks<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a><span class="token operator"><</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </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">></span><span class="token operator">></span><span class="token operator"> = </span>emptyArray()<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>long_url<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>Constants.EMPTY<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">var </span>toJson<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="token operator"> = </span><span class="token boolean">false</span></span></span><span class="token punctuation">)</span><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/config/CreateConfig.kt#L54">source</a>)</span></span></div><p class="paragraph">Configures the creation parameters of a Bitlink.</p><p class="paragraph">See the <a href="https://dev.bitly.com/api-reference#createFullBitlink">Bit.ly API</a> for more information.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="CONSTRUCTOR">
|
<div data-togglable="CONSTRUCTOR">
|
||||||
<h2 class="">Constructors</h2>
|
<h2 class="">Constructors</h2>
|
||||||
|
@ -82,6 +82,115 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div data-togglable="PROPERTY">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table"><a data-name="1170544142%2FProperties%2F769193423" anchor-label="deeplinks" id="1170544142%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="deeplinks.html"><span><span>deeplinks</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1170544142%2FProperties%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="deeplinks.html">deeplinks</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a><span class="token operator"><</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </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">></span><span class="token operator">></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="758967355%2FProperties%2F769193423" anchor-label="domain" id="758967355%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="domain.html"><span><span>domain</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="758967355%2FProperties%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="domain.html">domain</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="-306737322%2FProperties%2F769193423" anchor-label="group_guid" id="-306737322%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="group_guid.html"><span><span>group_guid</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-306737322%2FProperties%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="group_guid.html">group_guid</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="924860499%2FProperties%2F769193423" anchor-label="long_url" id="924860499%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="long_url.html"><span><span>long_url</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="924860499%2FProperties%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="long_url.html">long_url</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="415715078%2FProperties%2F769193423" anchor-label="tags" id="415715078%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/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="415715078%2FProperties%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="tags.html">tags</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</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">></span></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="931150691%2FProperties%2F769193423" anchor-label="title" id="931150691%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="title.html"><span><span>title</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="931150691%2FProperties%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="title.html">title</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="477502428%2FProperties%2F769193423" anchor-label="toJson" id="477502428%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="to-json.html"><span>to</span><wbr></wbr><span><span>Json</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="477502428%2FProperties%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="to-json.html">toJson</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div data-togglable="FUNCTION">
|
<div data-togglable="FUNCTION">
|
||||||
<h2 class="">Functions</h2>
|
<h2 class="">Functions</h2>
|
||||||
<div class="table"><a data-name="-1069138931%2FFunctions%2F769193423" anchor-label="build" id="-1069138931%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
<div class="table"><a data-name="-1069138931%2FFunctions%2F769193423" anchor-label="build" id="-1069138931%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
@ -206,115 +315,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-togglable="PROPERTY">
|
|
||||||
<h2 class="">Properties</h2>
|
|
||||||
<div class="table"><a data-name="1170544142%2FProperties%2F769193423" anchor-label="deeplinks" id="1170544142%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="deeplinks.html"><span><span>deeplinks</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1170544142%2FProperties%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="deeplinks.html">deeplinks</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a><span class="token operator"><</span><span class="token keyword"></span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">, </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">></span><span class="token operator">></span></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a data-name="758967355%2FProperties%2F769193423" anchor-label="domain" id="758967355%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="domain.html"><span><span>domain</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="758967355%2FProperties%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="domain.html">domain</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a data-name="-306737322%2FProperties%2F769193423" anchor-label="group_guid" id="-306737322%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="group_guid.html"><span><span>group_guid</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-306737322%2FProperties%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="group_guid.html">group_guid</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a data-name="924860499%2FProperties%2F769193423" anchor-label="long_url" id="924860499%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="long_url.html"><span><span>long_url</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="924860499%2FProperties%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="long_url.html">long_url</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a data-name="415715078%2FProperties%2F769193423" anchor-label="tags" id="415715078%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/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="415715078%2FProperties%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="tags.html">tags</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</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">></span></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a data-name="931150691%2FProperties%2F769193423" anchor-label="title" id="931150691%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="title.html"><span><span>title</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="931150691%2FProperties%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="title.html">title</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a data-name="477502428%2FProperties%2F769193423" anchor-label="toJson" id="477502428%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="to-json.html"><span>to</span><wbr></wbr><span><span>Json</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="477502428%2FProperties%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="to-json.html">toJson</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">class </span><a href="index.html">CreateConfig</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/config/CreateConfig.kt#L39">source</a>)</span></span></div><p class="paragraph">Provides a builder to create a Bitlink.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">class </span><a href="index.html">CreateConfig</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/config/CreateConfig.kt#L39">source</a>)</span></span></div><p class="paragraph">Provides a builder to create a Bitlink.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="TYPE">
|
<div data-togglable="TYPE">
|
||||||
<h2 class="">Types</h2>
|
<h2 class="">Types</h2>
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">class </span><a href="index.html">UpdateConfig</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/config/UpdateConfig.kt#L39">source</a>)</span></span></div><p class="paragraph">Provides a builder to update a Bitlink.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">class </span><a href="index.html">UpdateConfig</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/config/UpdateConfig.kt#L39">source</a>)</span></span></div><p class="paragraph">Provides a builder to update a Bitlink.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="TYPE">
|
<div data-togglable="TYPE">
|
||||||
<h2 class="">Types</h2>
|
<h2 class="">Types</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">class </span><a href="index.html">Bitlinks</a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">accessToken<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="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Bitlinks.kt#L49">source</a>)</span></span></div><p class="paragraph">Provides functions to create and manage Bitlinks.</p><p class="paragraph">See the <a href="https://dev.bitly.com/api-reference">Bitly API</a> for more information.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">class </span><a href="index.html">Bitlinks</a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">accessToken<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="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Bitlinks.kt#L49">source</a>)</span></span></div><p class="paragraph">Provides functions to create and manage Bitlinks.</p><p class="paragraph">See the <a href="https://dev.bitly.com/api-reference">Bitly API</a> for more information.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="CONSTRUCTOR">
|
<div data-togglable="CONSTRUCTOR">
|
||||||
<h2 class="">Constructors</h2>
|
<h2 class="">Constructors</h2>
|
||||||
|
@ -82,6 +82,25 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div data-togglable="PROPERTY">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table"><a data-name="-1479126003%2FProperties%2F769193423" anchor-label="lastCallResponse" id="-1479126003%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="last-call-response.html"><span>last</span><wbr></wbr><span>Call</span><wbr></wbr><span><span>Response</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1479126003%2FProperties%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="last-call-response.html">lastCallResponse</a><span class="token operator">: </span><a href="../-call-response/index.html">CallResponse</a></div><div class="brief "><p class="paragraph">The last API call response.</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div data-togglable="FUNCTION">
|
<div data-togglable="FUNCTION">
|
||||||
<h2 class="">Functions</h2>
|
<h2 class="">Functions</h2>
|
||||||
<div class="table"><a data-name="1704396341%2FFunctions%2F769193423" anchor-label="clicks" id="1704396341%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
<div class="table"><a data-name="1704396341%2FFunctions%2F769193423" anchor-label="clicks" id="1704396341%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
@ -161,25 +180,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-togglable="PROPERTY">
|
|
||||||
<h2 class="">Properties</h2>
|
|
||||||
<div class="table"><a data-name="-1479126003%2FProperties%2F769193423" anchor-label="lastCallResponse" id="-1479126003%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="last-call-response.html"><span>last</span><wbr></wbr><span>Call</span><wbr></wbr><span><span>Response</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1479126003%2FProperties%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="last-call-response.html">lastCallResponse</a><span class="token operator">: </span><a href="../-call-response/index.html">CallResponse</a></div><div class="brief "><p class="paragraph">The last API call response.</p></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">class </span><a href="index.html">Bitly</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Bitly.kt#L45">source</a>)</span></span></div><p class="paragraph">Provides access to the <a href="https://dev.bitly.com/api-reference">Bitly API v4</a>.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">open </span><span class="token keyword">class </span><a href="index.html">Bitly</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Bitly.kt#L45">source</a>)</span></span></div><p class="paragraph">Provides access to the <a href="https://dev.bitly.com/api-reference">Bitly API v4</a>.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="CONSTRUCTOR">
|
<div data-togglable="CONSTRUCTOR">
|
||||||
<h2 class="">Constructors</h2>
|
<h2 class="">Constructors</h2>
|
||||||
|
@ -82,6 +82,25 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div data-togglable="PROPERTY">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table"><a data-name="2134210725%2FProperties%2F769193423" anchor-label="accessToken" id="2134210725%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="access-token.html"><span>access</span><wbr></wbr><span><span>Token</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2134210725%2FProperties%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="access-token.html">accessToken</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><p class="paragraph">The API access token.</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div data-togglable="FUNCTION">
|
<div data-togglable="FUNCTION">
|
||||||
<h2 class="">Functions</h2>
|
<h2 class="">Functions</h2>
|
||||||
<div class="table"><a data-name="147834196%2FFunctions%2F769193423" anchor-label="bitlinks" id="147834196%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
<div class="table"><a data-name="147834196%2FFunctions%2F769193423" anchor-label="bitlinks" id="147834196%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
@ -116,25 +135,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-togglable="PROPERTY">
|
|
||||||
<h2 class="">Properties</h2>
|
|
||||||
<div class="table"><a data-name="2134210725%2FProperties%2F769193423" anchor-label="accessToken" id="2134210725%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="access-token.html"><span>access</span><wbr></wbr><span><span>Token</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2134210725%2FProperties%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">var </span><a href="access-token.html">accessToken</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><p class="paragraph">The API access token.</p></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">data </span><span class="token keyword">class </span><a href="index.html">CallResponse</a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">val </span>body<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>Constants.EMPTY_JSON<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">val </span>message<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator"> = </span><span class="token string">""</span><span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">val </span>description<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator"> = </span><span class="token string">""</span><span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">val </span>statusCode<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token operator"> = </span>-1</span></span><span class="token punctuation">)</span><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/CallResponse.kt#L43">source</a>)</span></span></div><p class="paragraph">Provides a data class to hold the JSON response.</p><h4 class="">Parameters</h4><div class="table"><div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main"><div class="main-subrow keyValue "><div class=""><span class="inline-flex"><div><u><span><span>body</span></span></u></div></span></div><div><div class="title"><p class="paragraph">The response body.</p></div></div></div></div><div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main"><div class="main-subrow keyValue "><div class=""><span class="inline-flex"><div><u><span><span>message</span></span></u></div></span></div><div><div class="title"><p class="paragraph">Bitly error message, if any.</p></div></div></div></div><div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main"><div class="main-subrow keyValue "><div class=""><span class="inline-flex"><div><u><span><span>description</span></span></u></div></span></div><div><div class="title"><p class="paragraph">Bitly error description, if any.</p></div></div></div></div><div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main"><div class="main-subrow keyValue "><div class=""><span class="inline-flex"><div><u><span>status</span><wbr></wbr><span><span>Code</span></span></u></div></span></div><div><div class="title"><p class="paragraph">HTTP status code,</p></div></div></div></div></div></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">data </span><span class="token keyword">class </span><a href="index.html">CallResponse</a><span class="token punctuation">(</span><span class="parameters "><span class="parameter "><span class="token keyword">val </span>body<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>Constants.EMPTY_JSON<span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">val </span>message<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator"> = </span><span class="token string">""</span><span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">val </span>description<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token operator"> = </span><span class="token string">""</span><span class="token punctuation">, </span></span><span class="parameter "><span class="token keyword">val </span>statusCode<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><span class="token operator"> = </span>-1</span></span><span class="token punctuation">)</span><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/CallResponse.kt#L43">source</a>)</span></span></div><p class="paragraph">Provides a data class to hold the JSON response.</p><h4 class="">Parameters</h4><div class="table"><div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main"><div class="main-subrow keyValue "><div class=""><span class="inline-flex"><div><u><span><span>body</span></span></u></div></span></div><div><div class="title"><p class="paragraph">The response body.</p></div></div></div></div><div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main"><div class="main-subrow keyValue "><div class=""><span class="inline-flex"><div><u><span><span>message</span></span></u></div></span></div><div><div class="title"><p class="paragraph">Bitly error message, if any.</p></div></div></div></div><div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main"><div class="main-subrow keyValue "><div class=""><span class="inline-flex"><div><u><span><span>description</span></span></u></div></span></div><div><div class="title"><p class="paragraph">Bitly error description, if any.</p></div></div></div></div><div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main"><div class="main-subrow keyValue "><div class=""><span class="inline-flex"><div><u><span>status</span><wbr></wbr><span><span>Code</span></span></u></div></span></div><div><div class="title"><p class="paragraph">HTTP status code,</p></div></div></div></div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="CONSTRUCTOR">
|
<div data-togglable="CONSTRUCTOR">
|
||||||
<h2 class="">Constructors</h2>
|
<h2 class="">Constructors</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">Constants</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Constants.kt#L35">source</a>)</span></span></div><p class="paragraph">Provides the constants for this package.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">Constants</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Constants.kt#L35">source</a>)</span></span></div><p class="paragraph">Provides the constants for this package.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">DELETE</a></div></div></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">DELETE</a></div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">GET</a></div></div></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">GET</a></div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">PATCH</a></div></div></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">PATCH</a></div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">POST</a></div></div></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">POST</a></div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">enum </span><a href="index.html">Methods</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">Methods</a><span class="token operator">> </span><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Methods.kt#L37">source</a>)</span></span></div><p class="paragraph">Provides HTTP methods definitions.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">enum </span><a href="index.html">Methods</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">Methods</a><span class="token operator">> </span><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Methods.kt#L37">source</a>)</span></span></div><p class="paragraph">Provides HTTP methods definitions.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button><button class="section-tab" data-togglable="ENTRY">Entries</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button><button class="section-tab" data-togglable="ENTRY">Entries</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="ENTRY">
|
<div data-togglable="ENTRY">
|
||||||
<h2 class="">Entries</h2>
|
<h2 class="">Entries</h2>
|
||||||
|
@ -127,40 +127,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-togglable="FUNCTION">
|
|
||||||
<h2 class="">Functions</h2>
|
|
||||||
<div class="table"><a data-name="452798538%2FFunctions%2F769193423" anchor-label="valueOf" id="452798538%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="value-of.html"><span>value</span><wbr></wbr><span><span>Of</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="452798538%2FFunctions%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="value-of.html"><span class="token function">valueOf</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">value<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">Methods</a></div><div class="brief "><p class="paragraph">Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)</p></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a data-name="1429921494%2FFunctions%2F769193423" anchor-label="values" id="1429921494%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="values.html"><span><span>values</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1429921494%2FFunctions%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="values.html"><span class="token function">values</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">Methods</a><span class="token operator">></span></div><div class="brief "><p class="paragraph">Returns an array containing the constants of this enum type, in the order they're declared.</p></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
<div class="table"><a data-name="-372974862%2FProperties%2F769193423" anchor-label="name" id="-372974862%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
<div class="table"><a data-name="-372974862%2FProperties%2F769193423" anchor-label="name" id="-372974862%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
@ -195,6 +161,40 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div data-togglable="FUNCTION">
|
||||||
|
<h2 class="">Functions</h2>
|
||||||
|
<div class="table"><a data-name="452798538%2FFunctions%2F769193423" anchor-label="valueOf" id="452798538%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="value-of.html"><span>value</span><wbr></wbr><span><span>Of</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="452798538%2FFunctions%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="value-of.html"><span class="token function">valueOf</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">value<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">Methods</a></div><div class="brief "><p class="paragraph">Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1429921494%2FFunctions%2F769193423" anchor-label="values" id="1429921494%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="values.html"><span><span>values</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1429921494%2FFunctions%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="values.html"><span class="token function">values</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">Methods</a><span class="token operator">></span></div><div class="brief "><p class="paragraph">Returns an array containing the constants of this enum type, in the order they're declared.</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">DAY</a></div></div></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">DAY</a></div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">HOUR</a></div></div></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">HOUR</a></div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">MINUTE</a></div></div></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">MINUTE</a></div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">MONTH</a></div></div></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">MONTH</a></div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">WEEK</a></div></div></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><a href="index.html">WEEK</a></div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">enum </span><a href="index.html">Units</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">Units</a><span class="token operator">> </span><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Units.kt#L38">source</a>)</span></span></div><p class="paragraph">Provides units of time definitions.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">enum </span><a href="index.html">Units</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">Units</a><span class="token operator">> </span><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Units.kt#L38">source</a>)</span></span></div><p class="paragraph">Provides units of time definitions.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button><button class="section-tab" data-togglable="ENTRY">Entries</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button><button class="section-tab" data-togglable="ENTRY">Entries</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
<div data-togglable="ENTRY">
|
<div data-togglable="ENTRY">
|
||||||
<h2 class="">Entries</h2>
|
<h2 class="">Entries</h2>
|
||||||
|
@ -142,40 +142,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-togglable="FUNCTION">
|
|
||||||
<h2 class="">Functions</h2>
|
|
||||||
<div class="table"><a data-name="679077703%2FFunctions%2F769193423" anchor-label="valueOf" id="679077703%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="value-of.html"><span>value</span><wbr></wbr><span><span>Of</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="679077703%2FFunctions%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="value-of.html"><span class="token function">valueOf</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">value<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">Units</a></div><div class="brief "><p class="paragraph">Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)</p></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a data-name="1020587155%2FFunctions%2F769193423" anchor-label="values" id="1020587155%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="values.html"><span><span>values</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1020587155%2FFunctions%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="values.html"><span class="token function">values</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">Units</a><span class="token operator">></span></div><div class="brief "><p class="paragraph">Returns an array containing the constants of this enum type, in the order they're declared.</p></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div data-togglable="PROPERTY">
|
<div data-togglable="PROPERTY">
|
||||||
<h2 class="">Properties</h2>
|
<h2 class="">Properties</h2>
|
||||||
<div class="table"><a data-name="-372974862%2FProperties%2F769193423" anchor-label="name" id="-372974862%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
<div class="table"><a data-name="-372974862%2FProperties%2F769193423" anchor-label="name" id="-372974862%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
@ -210,6 +176,40 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div data-togglable="FUNCTION">
|
||||||
|
<h2 class="">Functions</h2>
|
||||||
|
<div class="table"><a data-name="679077703%2FFunctions%2F769193423" anchor-label="valueOf" id="679077703%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="value-of.html"><span>value</span><wbr></wbr><span><span>Of</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="679077703%2FFunctions%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="value-of.html"><span class="token function">valueOf</span></a><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">value<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">Units</a></div><div class="brief "><p class="paragraph">Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a data-name="1020587155%2FFunctions%2F769193423" anchor-label="values" id="1020587155%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="values.html"><span><span>values</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1020587155%2FFunctions%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="values.html"><span class="token function">values</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a><span class="token operator"><</span><span class="token keyword"></span><a href="index.html">Units</a><span class="token operator">></span></div><div class="brief "><p class="paragraph">Returns an array containing the constants of this enum type, in the order they're declared.</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -61,8 +61,27 @@
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">Utils</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Utils.kt#L51">source</a>)</span></span></div><p class="paragraph">Provides useful generic functions.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">Utils</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Utils.kt#L51">source</a>)</span></span></div><p class="paragraph">Provides useful generic functions.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tabbedcontent">
|
<div class="tabbedcontent">
|
||||||
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,FUNCTION,PROPERTY">Members</button></div>
|
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>
|
||||||
<div class="tabs-section-body">
|
<div class="tabs-section-body">
|
||||||
|
<div data-togglable="PROPERTY">
|
||||||
|
<h2 class="">Properties</h2>
|
||||||
|
<div class="table"><a data-name="1238662439%2FProperties%2F769193423" anchor-label="logger" id="1238662439%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
||||||
|
<div class="main-subrow keyValue ">
|
||||||
|
<div class=""><span class="inline-flex">
|
||||||
|
<div><a href="logger.html"><span><span>logger</span></span></a></div>
|
||||||
|
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1238662439%2FProperties%2F769193423"></span>
|
||||||
|
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
||||||
|
</span></span></div>
|
||||||
|
<div>
|
||||||
|
<div class="title">
|
||||||
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation builtin">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-jvm-static/index.html"><span class="token annotation builtin">JvmStatic</span></a></div></div><span class="token keyword"></span><span class="token keyword">val </span><a href="logger.html">logger</a><span class="token operator">: </span><a href="https://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html">Logger</a></div><div class="brief "><p class="paragraph">The logger instance.</p></div></div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div data-togglable="FUNCTION">
|
<div data-togglable="FUNCTION">
|
||||||
<h2 class="">Functions</h2>
|
<h2 class="">Functions</h2>
|
||||||
<div class="table"><a data-name="1636371312%2FFunctions%2F769193423" anchor-label="call" id="1636371312%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
<div class="table"><a data-name="1636371312%2FFunctions%2F769193423" anchor-label="call" id="1636371312%2FFunctions%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
||||||
|
@ -142,25 +161,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-togglable="PROPERTY">
|
|
||||||
<h2 class="">Properties</h2>
|
|
||||||
<div class="table"><a data-name="1238662439%2FProperties%2F769193423" anchor-label="logger" id="1238662439%2FProperties%2F769193423" data-filterable-set=":dokkaHtml/main"></a>
|
|
||||||
<div class="table-row" data-filterable-current=":dokkaHtml/main" data-filterable-set=":dokkaHtml/main">
|
|
||||||
<div class="main-subrow keyValue ">
|
|
||||||
<div class=""><span class="inline-flex">
|
|
||||||
<div><a href="logger.html"><span><span>logger</span></span></a></div>
|
|
||||||
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1238662439%2FProperties%2F769193423"></span>
|
|
||||||
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
|
|
||||||
</span></span></div>
|
|
||||||
<div>
|
|
||||||
<div class="title">
|
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation builtin">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-jvm-static/index.html"><span class="token annotation builtin">JvmStatic</span></a></div></div><span class="token keyword"></span><span class="token keyword">val </span><a href="logger.html">logger</a><span class="token operator">: </span><a href="https://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html">Logger</a></div><div class="brief "><p class="paragraph">The logger instance.</p></div></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
<div class="cover ">
|
<div class="cover ">
|
||||||
<h1 class="cover"><span>is</span><wbr></wbr><span>Severe</span><wbr></wbr><span><span>Loggable</span></span></h1>
|
<h1 class="cover"><span>is</span><wbr></wbr><span>Severe</span><wbr></wbr><span><span>Loggable</span></span></h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="https://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html">Logger</a><span class="token punctuation">.</span><a href="is-severe-loggable.html"><span class="token function">isSevereLoggable</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Utils.kt#L156">source</a>)</span></span></div><p class="paragraph">Determines if <a href="https://docs.oracle.com/javase/8/docs/api/java/util/logging/Level.html#SEVERE--">Level.SEVERE</a> logging is enabled.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="https://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html">Logger</a><span class="token punctuation">.</span><a href="is-severe-loggable.html"><span class="token function">isSevereLoggable</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Utils.kt#L157">source</a>)</span></span></div><p class="paragraph">Determines if <a href="https://docs.oracle.com/javase/8/docs/api/java/util/logging/Level.html#SEVERE--">Level.SEVERE</a> logging is enabled.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2023 Copyright</span><span
|
<span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2023 Copyright</span><span
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
<div class="cover ">
|
<div class="cover ">
|
||||||
<h1 class="cover"><span>is</span><wbr></wbr><span>Valid</span><wbr></wbr><span><span>Url</span></span></h1>
|
<h1 class="cover"><span>is</span><wbr></wbr><span>Valid</span><wbr></wbr><span><span>Url</span></span></h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation builtin">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-jvm-static/index.html"><span class="token annotation builtin">JvmStatic</span></a></div></div><span class="token keyword"></span><span class="token keyword">fun </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">.</span><a href="is-valid-url.html"><span class="token function">isValidUrl</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Utils.kt#L162">source</a>)</span></span></div><p class="paragraph">Validates a URL.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation builtin">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-jvm-static/index.html"><span class="token annotation builtin">JvmStatic</span></a></div></div><span class="token keyword"></span><span class="token keyword">fun </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">.</span><a href="is-valid-url.html"><span class="token function">isValidUrl</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Utils.kt#L163">source</a>)</span></span></div><p class="paragraph">Validates a URL.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2023 Copyright</span><span
|
<span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2023 Copyright</span><span
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
<div class="cover ">
|
<div class="cover ">
|
||||||
<h1 class="cover"><span>remove</span><wbr></wbr><span><span>Http</span></span></h1>
|
<h1 class="cover"><span>remove</span><wbr></wbr><span><span>Http</span></span></h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation builtin">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-jvm-static/index.html"><span class="token annotation builtin">JvmStatic</span></a></div></div><span class="token keyword"></span><span class="token keyword">fun </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">.</span><a href="remove-http.html"><span class="token function">removeHttp</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Utils.kt#L180">source</a>)</span></span></div><p class="paragraph">Removes http(s) scheme from string.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation builtin">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-jvm-static/index.html"><span class="token annotation builtin">JvmStatic</span></a></div></div><span class="token keyword"></span><span class="token keyword">fun </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">.</span><a href="remove-http.html"><span class="token function">removeHttp</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Utils.kt#L181">source</a>)</span></span></div><p class="paragraph">Removes http(s) scheme from string.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2023 Copyright</span><span
|
<span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2023 Copyright</span><span
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
<div class="cover ">
|
<div class="cover ">
|
||||||
<h1 class="cover"><span>to</span><wbr></wbr><span>End</span><wbr></wbr><span><span>Point</span></span></h1>
|
<h1 class="cover"><span>to</span><wbr></wbr><span>End</span><wbr></wbr><span><span>Point</span></span></h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation builtin">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-jvm-static/index.html"><span class="token annotation builtin">JvmStatic</span></a></div></div><span class="token keyword"></span><span class="token keyword">fun </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">.</span><a href="to-end-point.html"><span class="token function">toEndPoint</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Utils.kt#L188">source</a>)</span></span></div><p class="paragraph">Builds the full API endpoint URL using the <a href="../-constants/-a-p-i_-b-a-s-e_-u-r-l.html">Constants.API_BASE_URL</a>.</p></div></div>
|
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/main"><div class="symbol monospace"><div class="block"><div class="block"><span class="token annotation builtin">@</span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-jvm-static/index.html"><span class="token annotation builtin">JvmStatic</span></a></div></div><span class="token keyword"></span><span class="token keyword">fun </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="token punctuation">.</span><a href="to-end-point.html"><span class="token function">toEndPoint</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="clearfix"><span class="floating-right">(<a href="https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin//net/thauvin/erik/bitly/Utils.kt#L189">source</a>)</span></span></div><p class="paragraph">Builds the full API endpoint URL using the <a href="../-constants/-a-p-i_-b-a-s-e_-u-r-l.html">Constants.API_BASE_URL</a>.</p></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2023 Copyright</span><span
|
<span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2023 Copyright</span><span
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -322,8 +322,8 @@ function refreshFiltering() {
|
||||||
document.querySelectorAll("[data-filterable-set]")
|
document.querySelectorAll("[data-filterable-set]")
|
||||||
.forEach(
|
.forEach(
|
||||||
elem => {
|
elem => {
|
||||||
let platformList = elem.getAttribute("data-filterable-set").split(' ').filter(v => -1 !== sourcesetList.indexOf(v))
|
let platformList = elem.getAttribute("data-filterable-set").split(',').filter(v => -1 !== sourcesetList.indexOf(v))
|
||||||
elem.setAttribute("data-filterable-current", platformList.join(' '))
|
elem.setAttribute("data-filterable-current", platformList.join(','))
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
refreshFilterButtons()
|
refreshFilterButtons()
|
||||||
|
|
|
@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("application")
|
id("application")
|
||||||
id("com.github.ben-manes.versions") version "0.46.0"
|
id("com.github.ben-manes.versions") version "0.47.0"
|
||||||
kotlin("jvm") version "1.8.20"
|
kotlin("jvm") version "1.8.20"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
10
pom.xml
10
pom.xml
|
@ -40,7 +40,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-bom</artifactId>
|
<artifactId>kotlin-bom</artifactId>
|
||||||
<version>1.8.20</version>
|
<version>1.8.22</version>
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>import</scope>
|
<scope>import</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
@ -50,25 +50,25 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.8.20</version>
|
<version>1.8.22</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.squareup.okhttp3</groupId>
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
<artifactId>okhttp</artifactId>
|
<artifactId>okhttp</artifactId>
|
||||||
<version>4.10.0</version>
|
<version>4.11.0</version>
|
||||||
<scope>runtime</scope>
|
<scope>runtime</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.squareup.okhttp3</groupId>
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
<artifactId>logging-interceptor</artifactId>
|
<artifactId>logging-interceptor</artifactId>
|
||||||
<version>4.10.0</version>
|
<version>4.11.0</version>
|
||||||
<scope>runtime</scope>
|
<scope>runtime</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.json</groupId>
|
<groupId>org.json</groupId>
|
||||||
<artifactId>json</artifactId>
|
<artifactId>json</artifactId>
|
||||||
<version>20230227</version>
|
<version>20230618</version>
|
||||||
<scope>runtime</scope>
|
<scope>runtime</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
|
@ -147,6 +147,7 @@ object Utils {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
response.close()
|
||||||
return CallResponse(json, message, description, response.code)
|
return CallResponse(json, message, description, response.code)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue