diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index ffce61c..e4e5126 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -41,7 +41,7 @@ jobs: env: BITLY_ACCESS_TOKEN: ${{ secrets.BITLY_ACCESS_TOKEN }} with: - arguments: build check --stacktrace + arguments: build check --stacktrace --scan - name: SonarCloud if: success() && matrix.java-version == env.SONAR_JDK diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cdb9ee..db05a47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,15 @@ # Changelog -## [1.0.0](https://github.com/ethauvin/bitly-shorten/tree/1.0.0) (2023-01-31) +## [1.0.0](https://github.com/ethauvin/bitly-shorten/tree/1.0.0) (2023-09-25) [Full Changelog](https://github.com/ethauvin/bitly-shorten/compare/0.9.3...1.0.0) **Implemented enhancements:** +- Add message and description to CallResponse [\#12](https://github.com/ethauvin/bitly-shorten/issues/12) - Add create config builder [\#10](https://github.com/ethauvin/bitly-shorten/issues/10) - Add update config builder [\#8](https://github.com/ethauvin/bitly-shorten/issues/8) -- Implement additional HTTP status code in CallResponse. [\#3](https://github.com/ethauvin/bitly-shorten/issues/3) +- Implement additional HTTP status code in CallResponse [\#3](https://github.com/ethauvin/bitly-shorten/issues/3) ## [0.9.3](https://github.com/ethauvin/bitly-shorten/tree/0.9.3) (2021-03-21) diff --git a/README.md b/README.md index c4bb8f6..32c50e5 100644 --- a/README.md +++ b/README.md @@ -27,13 +27,13 @@ bitly.bitlinks().expand("https://bit.ly/380ojFd") bitly.bitlinks().clicks("https://bit.ly/380ojFd") // Create a bitlink -bitly.bitlinks().create(title = "Erik's Weblog", long_url = "https://erik.thauvin.net/blog/") +bitly.bitlinks().create(title="Erik's Weblog", long_url = "https://erik.thauvin.net/blog/") // Update a bitlink -bitly.bitlinks().update("https://bit.ly/380ojFd", title="Erik's Weblog", tags = arrayOf("blog", "weblog")) +bitly.bitlinks().update("https://bit.ly/380ojFd", title = "Erik's Weblog", tags = arrayOf("blog", "weblog")) ``` - - View [Kotlin](https://github.com/ethauvin/bitly-shorten/blob/master/examples/src/main/kotlin/com/example/BitlyExample.kt) or [Java](https://github.com/ethauvin/bitly-shorten/blob/master/examples/src/main/java/com/example/BitlySample.java) Examples. +- View [Kotlin](https://github.com/ethauvin/bitly-shorten/blob/master/examples/src/main/kotlin/com/example/BitlyExample.kt) or [Java](https://github.com/ethauvin/bitly-shorten/blob/master/examples/src/main/java/com/example/BitlySample.java) Examples. ### API Access Token @@ -47,12 +47,13 @@ val bitly = Bitly() val bitly = Bitly(File("my.properties")) ``` + ```ini # my.properties BITLY_ACCESS_TOKEN=abc123def456ghi789jkl0 ``` -### Gradle, Maven, etc. +### Gradle, Maven, etc… To use with [Gradle](https://gradle.org/), include the following dependency in your [build](https://github.com/ethauvin/bitly-shorten/blob/master/examples/build.gradle.kts) file: @@ -63,7 +64,7 @@ repositories { } dependencies { - implementation("net.thauvin.erik:bitly-shorten:0.9.3") + implementation("net.thauvin.erik:bitly-shorten:1.0.0") } ``` @@ -82,6 +83,7 @@ var config = new CreateConfig.Builder() bitly.bitlinks().create(config); ``` + ```java var config = new UpdateConfig.Builder() .bitlink("https://bit.ly/380ojFd") @@ -99,6 +101,7 @@ All implemented API calls can return the full JSON responses: ```kotlin bitly.bitlinks().shorten("https://www.erik.thauvin.net/blog", toJson = true) ``` + ```json { "created_at": "2020-02-26T06:50:08+0000", @@ -130,6 +133,7 @@ if (response.isSuccessful) { println(response.body) } ``` + ```json { "created": "2009-06-12T19:00:45+0000", @@ -149,7 +153,9 @@ if (response.isSuccessful) { "default_group_guid": "ABCde1f23gh" } ``` + - View [Example](https://github.com/ethauvin/bitly-shorten/blob/master/examples/src/main/kotlin/com/example/BitlyRetrieve.kt) -### More... +### More… + If all else fails, there's always more [Documentation](https://ethauvin.github.io/bitly-shorten/). diff --git a/build.gradle.kts b/build.gradle.kts index cf76cef..6fe846a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,6 +25,7 @@ description = "A simple implementation of the Bitly link shortening API v4" val gitHub = "ethauvin/$name" val mavenUrl = "https://github.com/$gitHub" val deployDir = "deploy" +val docsDir = "docs" var isRelease = "release" in gradle.startParameter.taskNames var semverProcessor = "net.thauvin.erik:semver:1.2.0" @@ -132,12 +133,12 @@ tasks { clean { doLast { project.delete(fileTree(deployDir)) + project.delete(files(docsDir)) } } dokkaHtml { - dependsOn("kaptKotlin") - outputDirectory.set(file("$projectDir/docs")) + outputDirectory.set(file(docsDir)) dokkaSourceSets { configureEach { @@ -150,6 +151,7 @@ tasks { } } + mustRunAfter("kaptKotlin") } dokkaJavadoc { diff --git a/deploy.sh b/deploy.sh deleted file mode 100755 index 2a40199..0000000 --- a/deploy.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -./gradlew deploy -[ $? -eq 0 ] && scp deploy/*.jar nix3.thauvin.us:/opt/lib/jtalk-ee/bitly-shorten diff --git a/docs/alltypes/index.md b/docs/alltypes/index.md deleted file mode 100644 index 76ea730..0000000 --- a/docs/alltypes/index.md +++ /dev/null @@ -1,57 +0,0 @@ - - -[Bitly Shortener for Kotlin/Java](https://github.com/ethauvin/bitly-shorten) - -### All Types - -| Name | Summary | -|---|---| -| - -##### [net.thauvin.erik.bitly.Bitlinks](../net.thauvin.erik.bitly/-bitlinks/index.md) - -Provides functions to create and manage [Bitlinks](https://dev.bitly.com/v4/#tag/Bitlinks). - - -| - -##### [net.thauvin.erik.bitly.Bitly](../net.thauvin.erik.bitly/-bitly/index.md) - -Provides access to the [Bitly API v4](https://dev.bitly.com/v4). - - -| - -##### [net.thauvin.erik.bitly.CallResponse](../net.thauvin.erik.bitly/-call-response/index.md) - -Provides a data class to hold the JSON response. - - -| - -##### [net.thauvin.erik.bitly.Constants](../net.thauvin.erik.bitly/-constants/index.md) - -Provides the constants for this package. - - -| - -##### [net.thauvin.erik.bitly.Methods](../net.thauvin.erik.bitly/-methods/index.md) - -Provides HTTP methods definitions. - - -| - -##### [net.thauvin.erik.bitly.Units](../net.thauvin.erik.bitly/-units/index.md) - -Provides units of time definitions. - - -| - -##### [net.thauvin.erik.bitly.Utils](../net.thauvin.erik.bitly/-utils/index.md) - -Provides useful generic functions. - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/-builder.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/-builder.html index bb895b3..39439f1 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/-builder.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/-builder.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/build.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/build.html index 36a238c..8887af1 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/build.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/build.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html index e042b5e..a902e39 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.html index 5593485..5047ae8 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/equals.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/equals.html deleted file mode 100644 index a32f047..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/equals.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - equals - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

equals

-
-
open operator override fun equals(other: Any?): Boolean(source)
-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long_url.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html similarity index 82% rename from docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long_url.html rename to docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html index 9fb1480..efafdb6 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long_url.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html @@ -2,7 +2,7 @@ - long_url + groupGuid @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
@@ -61,12 +61,12 @@
-
- +
+
-

long_url

+

groupGuid

- +
-0.9.4-SNAPSHOT
+1.0.0
@@ -136,17 +136,17 @@
- +
-
group_guid
- + +
Link copied to clipboard
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long-url.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long-url.html index b5d0e34..c5f434d 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long-url.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long-url.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.html index 217ba53..d900f4e 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.html index 73b1df1..79450ae 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html index 64e97f5..006d4f1 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/deep-links.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/deep-links.html index db8159c..46517de 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/deep-links.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/deep-links.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/domain.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/domain.html index df41087..b6b8cf7 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/domain.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/domain.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/group_guid.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/group_guid.html index f388c2b..6cf81c8 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/group_guid.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/group_guid.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/index.html index f182def..9302187 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/long_url.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/long_url.html index f787ab9..fefb530 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/long_url.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/long_url.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/tags.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/tags.html index e9e2be7..453b9cd 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/tags.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/tags.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/title.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/title.html index 937f485..51ad0c3 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/title.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/title.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/to-json.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/to-json.html index f7f4811..f4fc996 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/to-json.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/to-json.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/-builder.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/-builder.html index 5951e11..708498e 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/-builder.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/-builder.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html index 22504b9..3a8bfa3 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

archived

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

bitlink

-
+
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client-id.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client-id.html index 7193ff0..1764553 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client-id.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client-id.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

clientId

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

createdAt

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

createdBy

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

customBitlinks

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -61,12 +61,12 @@
-
- +
+
-

client_id

+

deepLinks

- +
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

id

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -65,7 +65,7 @@

Builder

-
data class Builder(var bitlink: String = Constants.EMPTY, var references: Map<String, String> = emptyMap(), var archived: Boolean = false, var tags: Array<String> = emptyArray(), var created_at: String = Constants.EMPTY, var title: String = Constants.EMPTY, var deeplinks: Array<Map<String, String>> = emptyArray(), var created_by: String = Constants.EMPTY, var long_url: String = Constants.EMPTY, var client_id: String = Constants.EMPTY, var custom_bitlinks: Array<String> = emptyArray(), var link: String = Constants.EMPTY, var id: String = Constants.EMPTY, var toJson: Boolean = false)(source)

Configures the update parameters of a Bitlink.

See the Bit.ly API for more information.

+
data class Builder(bitlink: String = Constants.EMPTY, references: Map<String, String> = emptyMap(), archived: Boolean = false, tags: Array<String> = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array<Map<String, String>> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array<String> = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false)(source)

Configures the update parameters of a Bitlink.

See the Bit.ly API for more information.

@@ -89,220 +89,6 @@
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
var id: String
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-

Functions

@@ -360,7 +146,7 @@
@@ -375,7 +161,7 @@
- +
@@ -390,7 +176,7 @@
- +
@@ -405,22 +191,22 @@
- +
- +
-
deeplinks
- + +
Link copied to clipboard
@@ -465,7 +251,7 @@
- +
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html index 1ff075d..4108557 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

link

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

longUrl

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

references

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

tags

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

title

-
+
-0.9.4-SNAPSHOT
+1.0.0
@@ -66,7 +66,7 @@

toJson

-
+
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html index 7272522..50e0523 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/client_id.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/client_id.html index 7d8fa11..0000a7a 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/client_id.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/client_id.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_at.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_at.html index d33e2cc..41f9254 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_at.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_at.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_by.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_by.html index 62a94bc..ecbf31f 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_by.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_by.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/custom_bitlinks.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/custom_bitlinks.html index 79bece0..b945dcf 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/custom_bitlinks.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/custom_bitlinks.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/deep-links.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/deep-links.html index 4f72771..538e76c 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/deep-links.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/deep-links.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/id.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/id.html index cd6a124..0f5def6 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/id.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/id.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/index.html index 3f104c6..7802b40 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
@@ -82,7 +82,7 @@
-
data class Builder(var bitlink: String = Constants.EMPTY, var references: Map<String, String> = emptyMap(), var archived: Boolean = false, var tags: Array<String> = emptyArray(), var created_at: String = Constants.EMPTY, var title: String = Constants.EMPTY, var deeplinks: Array<Map<String, String>> = emptyArray(), var created_by: String = Constants.EMPTY, var long_url: String = Constants.EMPTY, var client_id: String = Constants.EMPTY, var custom_bitlinks: Array<String> = emptyArray(), var link: String = Constants.EMPTY, var id: String = Constants.EMPTY, var toJson: Boolean = false)

Configures the update parameters of a Bitlink.

+
data class Builder(bitlink: String = Constants.EMPTY, references: Map<String, String> = emptyMap(), archived: Boolean = false, tags: Array<String> = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array<Map<String, String>> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array<String> = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false)

Configures the update parameters of a Bitlink.

diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/link.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/link.html index c658ed1..506d893 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/link.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/link.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/long_url.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/long_url.html index 3d1cc78..458729f 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/long_url.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/long_url.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/references.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/references.html index ad2e403..85d2646 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/references.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/references.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/tags.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/tags.html index 7f0790a..fc7247e 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/tags.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/tags.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/title.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/title.html index 7daf40b..5c7b37e 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/title.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/title.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/to-json.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/to-json.html index fc99174..7d0ddf1 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/to-json.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/to-json.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/index.html index 8053d35..f9715e6 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html index 45a3e14..eadd160 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html index 807ccf7..af7cdea 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/create.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/create.html index e7bb2da..2c2a07c 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/create.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/create.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/expand.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/expand.html index 8ffcd58..1e74d94 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/expand.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/expand.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/index.html index 7e221b4..40283f9 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/last-call-response.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/last-call-response.html index 12a4e7b..048c0da 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/last-call-response.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/last-call-response.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html index 458218d..195331d 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/update.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/update.html index 609eea7..c8b0b55 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/update.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitlinks/update.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html index 92c385b..8f5d2bc 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/access-token.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/access-token.html index f24a838..c6c81d9 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/access-token.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/access-token.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html index ef3454f..2da2970 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/call.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/call.html index 31f44eb..d0dcf8a 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/call.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/call.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/index.html index a2115ce..31f01be 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-bitly/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/-call-response.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/-call-response.html index 8843eca..d938b84 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/-call-response.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/-call-response.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/body.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/body.html index 9cb0c05..6f62054 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/body.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/body.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/description.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/description.html index cb8ac7a..1e07609 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/description.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/description.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/index.html index a0e4f54..9c56030 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-bad-request.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-bad-request.html index 16dae18..2523a81 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-bad-request.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-bad-request.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-created.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-created.html index 8586fb0..1b4fac1 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-created.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-created.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-expectation-failed.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-expectation-failed.html index a96c198..1ca29fc 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-expectation-failed.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-expectation-failed.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-forbidden.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-forbidden.html index 66ccd8d..d0742f3 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-forbidden.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-forbidden.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-gone.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-gone.html index 1e1d6fe..d733a80 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-gone.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-gone.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-internal-error.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-internal-error.html index d7e1882..5dfad87 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-internal-error.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-internal-error.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-not-found.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-not-found.html index e61e567..f713445 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-not-found.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-not-found.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-successful.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-successful.html index 297f976..2c92ff3 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-successful.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-successful.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-temporarily-unavailable.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-temporarily-unavailable.html index edac472..56f19d6 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-temporarily-unavailable.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-temporarily-unavailable.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-too-many-requests.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-too-many-requests.html index ee1c45a..0e3d065 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-too-many-requests.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-too-many-requests.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-unprocessable-entity.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-unprocessable-entity.html index 4ea6e82..70f1ded 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-unprocessable-entity.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-unprocessable-entity.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-upgrade-required.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-upgrade-required.html index d8e8d01..0e3609a 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-upgrade-required.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/is-upgrade-required.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/message.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/message.html index a641f93..b5b49ee 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/message.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/message.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/result-code.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/result-code.html deleted file mode 100644 index b7d59fc..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/result-code.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - resultCode - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

resultCode

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/status-code.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/status-code.html index 789fc7c..c31b8d6 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/status-code.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-call-response/status-code.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html index 47e4606..ec99959 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-a-p-i_-b-a-s-e_-u-r-l.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-a-p-i_-b-a-s-e_-u-r-l.html deleted file mode 100644 index dac66e6..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-a-p-i_-b-a-s-e_-u-r-l.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - API_BASE_URL - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

API_BASE_URL

-
-

The Bitly API base URL.

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-e-m-p-t-y.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-e-m-p-t-y.html deleted file mode 100644 index 0766110..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-e-m-p-t-y.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - EMPTY - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

EMPTY

-
-
const val EMPTY: String(source)

Empty String.

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-e-m-p-t-y_-j-s-o-n.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-e-m-p-t-y_-j-s-o-n.html deleted file mode 100644 index e36dc6f..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-e-m-p-t-y_-j-s-o-n.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - EMPTY_JSON - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

EMPTY_JSON

-
-

Empty JSON Object.

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html deleted file mode 100644 index 83c950b..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - ENV_ACCESS_TOKEN - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ENV_ACCESS_TOKEN

-
-

The API access token environment variable.

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-f-a-l-s-e.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-f-a-l-s-e.html deleted file mode 100644 index 981c483..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-f-a-l-s-e.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - FALSE - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

FALSE

-
-
const val FALSE: String(source)

False

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-t-r-u-e.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-t-r-u-e.html deleted file mode 100644 index 0615c86..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/-t-r-u-e.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - TRUE - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TRUE

-
-
const val TRUE: String(source)

True

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/index.html deleted file mode 100644 index 617bbea..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-constants/index.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - Constants - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Constants

- -
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
const val API_BASE_URL: String

The Bitly API base URL.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
const val EMPTY: String

Empty String.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
const val EMPTY_JSON: String

Empty JSON Object.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

The API access token environment variable.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
const val FALSE: String

False

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
const val TRUE: String

True

-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html index 8a65480..4c9ede9 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html index 1144fc5..331054d 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html index fea5891..ae669ff 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.html index 6b6607f..bc6513a 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-t-r-u-e.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-t-r-u-e.html index aced67b..2834f11 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-t-r-u-e.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/-t-r-u-e.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/index.html index 471a7e6..8b3ef39 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-constants/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html index f422913..aa302c0 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/name.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/name.html deleted file mode 100644 index 1c8ac9b..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/name.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - name - - -
-
- - -
-
-
-
-
-
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/ordinal.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/ordinal.html deleted file mode 100644 index d8a9f7f..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/ordinal.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - ordinal - - -
-
- - -
-
-
-
-
-
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html index d8f11b7..9c4f4f2 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/name.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/name.html deleted file mode 100644 index b95c94b..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/name.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - name - - -
-
- - -
-
-
-
-
-
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/ordinal.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/ordinal.html deleted file mode 100644 index 198d827..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/ordinal.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - ordinal - - -
-
- - -
-
-
-
-
-
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html index 94cd048..9454b43 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/name.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/name.html deleted file mode 100644 index d567efb..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/name.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - name - - -
-
- - -
-
-
-
-
-
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/ordinal.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/ordinal.html deleted file mode 100644 index a6575a7..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/ordinal.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - ordinal - - -
-
- - -
-
-
-
-
-
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html index 2fef0b5..ed7fae8 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/name.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/name.html deleted file mode 100644 index dd93d4b..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/name.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - name - - -
-
- - -
-
-
-
-
-
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/ordinal.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/ordinal.html deleted file mode 100644 index 7ad6088..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/ordinal.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - ordinal - - -
-
- - -
-
-
-
-
-
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/entries.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/entries.html index 36cc54c..5038074 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/entries.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/entries.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/index.html index ab56e65..bb22769 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/value-of.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/value-of.html index 27d8bab..e8b7b25 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/value-of.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/value-of.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/values.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/values.html index 93f1632..8d887ec 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/values.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-methods/values.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html index 6acf6c8..179ee7b 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/name.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/name.html deleted file mode 100644 index 1207bf1..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/name.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - name - - -
-
- - -
-
-
-
-
-
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/ordinal.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/ordinal.html deleted file mode 100644 index 967e289..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/ordinal.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - ordinal - - -
-
- - -
-
-
-
-
-
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html index a03de3d..ce4bdb1 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/name.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/name.html deleted file mode 100644 index b343447..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/name.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - name - - -
-
- - -
-
-
-
-
-
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/ordinal.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/ordinal.html deleted file mode 100644 index 8e92683..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/ordinal.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - ordinal - - -
-
- - -
-
-
-
-
-
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html index 948027a..048e3a5 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/name.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/name.html deleted file mode 100644 index eec32ef..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/name.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - name - - -
-
- - -
-
-
-
-
-
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/ordinal.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/ordinal.html deleted file mode 100644 index 4644772..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/ordinal.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - ordinal - - -
-
- - -
-
-
-
-
-
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html index af55028..8901c75 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/name.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/name.html deleted file mode 100644 index c0f31ef..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/name.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - name - - -
-
- - -
-
-
-
-
-
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/ordinal.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/ordinal.html deleted file mode 100644 index d4b7ff4..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/ordinal.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - ordinal - - -
-
- - -
-
-
-
-
-
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html index f579ffa..62a72b2 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/name.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/name.html deleted file mode 100644 index ee03c00..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/name.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - name - - -
-
- - -
-
-
-
-
-
- -
-

name

-
-
- -
-
val name: String
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/ordinal.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/ordinal.html deleted file mode 100644 index 226dad8..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/ordinal.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - ordinal - - -
-
- - -
-
-
-
-
-
- -
-

ordinal

-
-
- -
-
val ordinal: Int
-
-
-
- -
-
- - - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/entries.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/entries.html index 3f2e902..9ef7b20 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/entries.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/entries.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/index.html index 1195b3e..12573c5 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/value-of.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/value-of.html index 7050f99..66a882a 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/value-of.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/value-of.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/values.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/values.html index e3f3e4a..c033a8a 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-units/values.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-units/values.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/-builder.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/-builder.html deleted file mode 100644 index 777d9a4..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/-builder.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - Builder - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Builder

-
-
fun Builder(bitlink: String = Constants.EMPTY, references: Map<String, String> = emptyMap(), archived: Boolean = false, tags: Array<String> = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array<Map<String, String>> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array<String> = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false)(source)
-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/archived.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/archived.html deleted file mode 100644 index 4da2c76..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/archived.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - archived - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

archived

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/bitlink.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/bitlink.html deleted file mode 100644 index d4a6b85..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/bitlink.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - bitlink - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

bitlink

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/build.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/build.html deleted file mode 100644 index 5e6774b..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/build.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - build - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

build

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/client-id.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/client-id.html deleted file mode 100644 index bf533b5..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/client-id.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - clientId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

clientId

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/client_id.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/client_id.html deleted file mode 100644 index e0e75b2..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/client_id.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - client_id - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

client_id

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created-at.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created-at.html deleted file mode 100644 index a73a258..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created-at.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - createdAt - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

createdAt

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created-by.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created-by.html deleted file mode 100644 index 47294b4..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created-by.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - createdBy - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

createdBy

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created_at.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created_at.html deleted file mode 100644 index d1241b7..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created_at.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - created_at - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

created_at

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created_by.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created_by.html deleted file mode 100644 index 0c3c72a..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/created_by.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - created_by - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

created_by

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/custom-bitlinks.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/custom-bitlinks.html deleted file mode 100644 index 2ef85aa..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/custom-bitlinks.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - customBitlinks - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

customBitlinks

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/custom_bitlinks.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/custom_bitlinks.html deleted file mode 100644 index 080261f..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/custom_bitlinks.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - custom_bitlinks - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

custom_bitlinks

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/deeplinks.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/deeplinks.html deleted file mode 100644 index bd6557a..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/deeplinks.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - deeplinks - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

deeplinks

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/equals.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/equals.html deleted file mode 100644 index 481ad0c..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/equals.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - equals - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

equals

-
-
open operator override fun equals(other: Any?): Boolean(source)
-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/hash-code.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/hash-code.html deleted file mode 100644 index d297e0c..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/hash-code.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - hashCode - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

hashCode

-
-
open override fun hashCode(): Int(source)
-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/id.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/id.html deleted file mode 100644 index aa4dfec..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/id.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - id - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

id

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/index.html deleted file mode 100644 index 1d8f95d..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/index.html +++ /dev/null @@ -1,560 +0,0 @@ - - - - - Builder - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Builder

-
data class Builder(var bitlink: String = Constants.EMPTY, var references: Map<String, String> = emptyMap(), var archived: Boolean = false, var tags: Array<String> = emptyArray(), var created_at: String = Constants.EMPTY, var title: String = Constants.EMPTY, var deeplinks: Array<Map<String, String>> = emptyArray(), var created_by: String = Constants.EMPTY, var long_url: String = Constants.EMPTY, var client_id: String = Constants.EMPTY, var custom_bitlinks: Array<String> = emptyArray(), var link: String = Constants.EMPTY, var id: String = Constants.EMPTY, var toJson: Boolean = false)(source)
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Builder(bitlink: String = Constants.EMPTY, references: Map<String, String> = emptyMap(), archived: Boolean = false, tags: Array<String> = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array<Map<String, String>> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array<String> = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false)
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun hashCode(): Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
var archived: Boolean = false
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
var id: String
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
var toJson: Boolean = false
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/link.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/link.html deleted file mode 100644 index bbb418f..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/link.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - link - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

link

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/long-url.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/long-url.html deleted file mode 100644 index 2a0899d..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/long-url.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - longUrl - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

longUrl

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/long_url.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/long_url.html deleted file mode 100644 index ebd5ff6..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/long_url.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - long_url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

long_url

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/references.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/references.html deleted file mode 100644 index 3bdaba9..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/references.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - references - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

references

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/tags.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/tags.html deleted file mode 100644 index 56d2175..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/tags.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - tags - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

tags

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/title.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/title.html deleted file mode 100644 index cd41ada..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/title.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - title - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

title

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/to-json.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/to-json.html deleted file mode 100644 index 4d49759..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/-builder/to-json.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - toJson - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

toJson

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/archived.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/archived.html deleted file mode 100644 index cbb611a..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/archived.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - archived - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

archived

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/bitlink.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/bitlink.html deleted file mode 100644 index d034bc4..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/bitlink.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - bitlink - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

bitlink

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/client_id.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/client_id.html deleted file mode 100644 index 9983f35..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/client_id.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - client_id - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

client_id

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/created_at.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/created_at.html deleted file mode 100644 index f35bca8..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/created_at.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - created_at - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

created_at

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/created_by.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/created_by.html deleted file mode 100644 index 13e1341..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/created_by.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - created_by - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

created_by

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/custom_bitlinks.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/custom_bitlinks.html deleted file mode 100644 index 73cc3f7..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/custom_bitlinks.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - custom_bitlinks - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

custom_bitlinks

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/deep-links.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/deep-links.html deleted file mode 100644 index 67f5fb1..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/deep-links.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - deepLinks - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

deepLinks

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/id.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/id.html deleted file mode 100644 index cb56766..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/id.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - id - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

id

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/index.html deleted file mode 100644 index b5ac06d..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/index.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - UpdateConfig - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

UpdateConfig

- -
-
-
-
-

Types

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
data class Builder(var bitlink: String = Constants.EMPTY, var references: Map<String, String> = emptyMap(), var archived: Boolean = false, var tags: Array<String> = emptyArray(), var created_at: String = Constants.EMPTY, var title: String = Constants.EMPTY, var deeplinks: Array<Map<String, String>> = emptyArray(), var created_by: String = Constants.EMPTY, var long_url: String = Constants.EMPTY, var client_id: String = Constants.EMPTY, var custom_bitlinks: Array<String> = emptyArray(), var link: String = Constants.EMPTY, var id: String = Constants.EMPTY, var toJson: Boolean = false)
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val id: String
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/link.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/link.html deleted file mode 100644 index 3de2cc8..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/link.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - link - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

link

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/long_url.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/long_url.html deleted file mode 100644 index 3b30759..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/long_url.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - long_url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

long_url

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/references.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/references.html deleted file mode 100644 index 44328c6..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/references.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - references - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

references

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/tags.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/tags.html deleted file mode 100644 index 99502fa..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/tags.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - tags - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

tags

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/title.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/title.html deleted file mode 100644 index 8c8015e..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/title.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - title - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

title

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/to-json.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/to-json.html deleted file mode 100644 index 63b7afc..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-update-config/to-json.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - toJson - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

toJson

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/call.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/call.html deleted file mode 100644 index 833ed87..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/call.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - call - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

call

-
-
fun call(accessToken: String, endPoint: String, params: Map<String, Any> = emptyMap(), method: Methods = Methods.POST): CallResponse(source)

Executes an API call.

Return

A CallResponse object.

Parameters

accessToken

The API access token.

endPoint

The REST endpoint. (eg. https://api-ssl.bitly.com/v4/shorten)

params

The request parameters key/value map.

method

The submission Method.

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/index.html deleted file mode 100644 index 2dfad9a..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/index.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - Companion - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Companion

- -
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun call(accessToken: String, endPoint: String, params: Map<String, Any> = emptyMap(), method: Methods = Methods.POST): CallResponse

Executes an API call.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Is Level.SEVERE logging enabled.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Validates a URL.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Removes http(s) scheme from string.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Builds the full API endpoint URL using the Constants.API_BASE_URL.

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

The logger instance.

-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/is-severe-loggable.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/is-severe-loggable.html deleted file mode 100644 index bdad849..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/is-severe-loggable.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - isSevereLoggable - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isSevereLoggable

-
- -
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/is-valid-url.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/is-valid-url.html deleted file mode 100644 index b30e76f..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/is-valid-url.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - isValidUrl - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isValidUrl

-
-

Validates a URL.

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/logger.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/logger.html deleted file mode 100644 index 598a268..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/logger.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - logger - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

logger

-
-

The logger instance.

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/remove-http.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/remove-http.html deleted file mode 100644 index 6d3e946..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/remove-http.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - removeHttp - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

removeHttp

-
-

Removes http(s) scheme from string.

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/to-end-point.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/to-end-point.html deleted file mode 100644 index 7e94924..0000000 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/-companion/to-end-point.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - toEndPoint - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

toEndPoint

-
-

Builds the full API endpoint URL using the Constants.API_BASE_URL.

-
- -
-
- - diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/call.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/call.html index e944178..499949b 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/call.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/call.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/index.html index c3785e7..00a5306 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/is-severe-loggable.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/is-severe-loggable.html index ddde37d..91fc17d 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/is-severe-loggable.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/is-severe-loggable.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/is-valid-url.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/is-valid-url.html index cb432f3..ff649a8 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/is-valid-url.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/is-valid-url.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/logger.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/logger.html index 199b2fa..ed92640 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/logger.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/logger.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/remove-http.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/remove-http.html index 0e94d04..46b7181 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/remove-http.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/remove-http.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/to-end-point.html b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/to-end-point.html index c477090..5c66aec 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/to-end-point.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/-utils/to-end-point.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/index.html index 37f519b..cc6c52e 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/bitly-shorten/package-list b/docs/bitly-shorten/package-list index 697d77a..b1e3e7c 100644 --- a/docs/bitly-shorten/package-list +++ b/docs/bitly-shorten/package-list @@ -6,7 +6,7 @@ $dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/Builder/#kotl $dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/build/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/build.html $dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/deeplinks/#kotlin.Array[kotlin.collections.Map[kotlin.String,kotlin.String]]/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html $dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/domain/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.html -$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/group_guid/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group_guid.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/groupGuid/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html $dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/longUrl/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long-url.html $dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/tags/#kotlin.Array[kotlin.String]/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.html $dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/title/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.html @@ -21,34 +21,20 @@ $dokka.location:net.thauvin.erik.bitly.config/CreateConfig/title/#/PointingToDec $dokka.location:net.thauvin.erik.bitly.config/CreateConfig/toJson/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/to-json.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder///PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/Builder/#kotlin.String#kotlin.collections.Map[kotlin.String,kotlin.String]#kotlin.Boolean#kotlin.Array[kotlin.String]#kotlin.String#kotlin.String#kotlin.Array[kotlin.collections.Map[kotlin.String,kotlin.String]]#kotlin.String#kotlin.String#kotlin.String#kotlin.Array[kotlin.String]#kotlin.String#kotlin.String#kotlin.Boolean/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/-builder.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/archived/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/archived/#kotlin.Boolean/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/bitlink/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/bitlink/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/build/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/clientId/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client-id.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/client_id/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client_id.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/createdAt/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/createdBy/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/created_at/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created_at.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/created_by/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created_by.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/customBitlinks/#kotlin.Array[kotlin.String]/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/custom_bitlinks/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom_bitlinks.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/deeplinks/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deeplinks.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/deeplinks/#kotlin.Array[kotlin.collections.Map[kotlin.String,kotlin.String]]/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deeplinks.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/id/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/deepLinks/#kotlin.Array[kotlin.collections.Map[kotlin.String,kotlin.String]]/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/id/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/link/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/link/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/longUrl/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/long_url/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long_url.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/references/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/references/#kotlin.collections.Map[kotlin.String,kotlin.String]/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/tags/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/tags/#kotlin.Array[kotlin.String]/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/title/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/title/#kotlin.String/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html -$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/toJson/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/toJson/#kotlin.Boolean/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig///PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/index.html $dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/archived/#/PointingToDeclaration/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/archived.html diff --git a/docs/images/docs_logo.svg b/docs/images/docs_logo.svg deleted file mode 100644 index 7c1e3ae..0000000 --- a/docs/images/docs_logo.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/docs/index.html b/docs/index.html index 2a8e7cd..fe16c85 100644 --- a/docs/index.html +++ b/docs/index.html @@ -45,7 +45,7 @@
-0.9.4-SNAPSHOT
+1.0.0
diff --git a/docs/index.md b/docs/index.md deleted file mode 100644 index ad66a2b..0000000 --- a/docs/index.md +++ /dev/null @@ -1,15 +0,0 @@ -[docs](./index.md) - -[Bitly Shortener for Kotlin/Java](https://github.com/ethauvin/bitly-shorten) - -A simple implementation of the link shortening ([bitlinks](https://dev.bitly.com/v4/#tag/Bitlinks)) abilities of the [Bitly API v4](https://dev.bitly.com/v4). - -### Packages - -| Name | Summary | -|---|---| -| [net.thauvin.erik.bitly](net.thauvin.erik.bitly/index.md) | Provides the classes necessary to access the [Bitly API v4](https://dev.bitly.com/v4). | - -### Index - -[All Types](alltypes/index.md) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-bitlinks/-init-.md b/docs/net.thauvin.erik.bitly/-bitlinks/-init-.md deleted file mode 100644 index 9f9e44c..0000000 --- a/docs/net.thauvin.erik.bitly/-bitlinks/-init-.md +++ /dev/null @@ -1,10 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitlinks](index.md) / [<init>](./-init-.md) - -# <init> - -`Bitlinks(accessToken: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` - -Provides functions to create and manage [Bitlinks](https://dev.bitly.com/v4/#tag/Bitlinks). - -See the [Bitly API](https://dev.bitly.com/v4/#tag/Bitlinks) for more information. - diff --git a/docs/net.thauvin.erik.bitly/-bitlinks/clicks.md b/docs/net.thauvin.erik.bitly/-bitlinks/clicks.md deleted file mode 100644 index 9d52289..0000000 --- a/docs/net.thauvin.erik.bitly/-bitlinks/clicks.md +++ /dev/null @@ -1,28 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitlinks](index.md) / [clicks](./clicks.md) - -# clicks - -`@Synchronized @JvmOverloads fun clicks(bitlink: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, unit: `[`Units`](../-units/index.md)` = Units.DAY, units: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)` = -1, size: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)` = 50, unit_reference: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, toJson: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitlinks.kt#L70) - -Returns the click counts for a specified Bitlink. - -See the [Bitly API](https://dev.bitly.com/v4/#operation/getClicksSummaryForBitlink) for more information. - -### Parameters - -`bitlink` - A Bitlink made of the domain and hash. - -`unit` - A [unit of time](../-units/index.md). - -`units` - An integer representing the time units to query data for. Pass -1 to return all units available. - -`size` - The quantity of items to be be returned. - -`unit_reference` - An ISO-8601 timestamp, indicating the most recent time for which to pull metrics. -Will default to current time. - -`toJson` - Returns the full JSON response if `true` - -**Return** -The click counts or JSON response object. - diff --git a/docs/net.thauvin.erik.bitly/-bitlinks/create.md b/docs/net.thauvin.erik.bitly/-bitlinks/create.md deleted file mode 100644 index 05b33ed..0000000 --- a/docs/net.thauvin.erik.bitly/-bitlinks/create.md +++ /dev/null @@ -1,20 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitlinks](index.md) / [create](./create.md) - -# create - -`@Synchronized @JvmOverloads fun create(domain: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, title: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, group_guid: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, tags: `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`> = emptyArray(), deeplinks: `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`Map`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>> = emptyArray(), long_url: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, toJson: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitlinks.kt#L107) - -Converts a long url to a Bitlink and sets additional parameters. - -See the [Bit.ly API](https://dev.bitly.com/v4/#operation/createFullBitlink) for more information. - -### Parameters - -`toJson` - Returns the full JSON response if `true` - -**Oaran** -long_url The long URL. - -**Return** -The shorten URL or JSON response, or on error, an empty string/JSON object. - diff --git a/docs/net.thauvin.erik.bitly/-bitlinks/expand.md b/docs/net.thauvin.erik.bitly/-bitlinks/expand.md deleted file mode 100644 index 3e7f266..0000000 --- a/docs/net.thauvin.erik.bitly/-bitlinks/expand.md +++ /dev/null @@ -1,19 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitlinks](index.md) / [expand](./expand.md) - -# expand - -`@Synchronized @JvmOverloads fun expand(bitlink_id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, toJson: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitlinks.kt#L146) - -Expands a Bitlink. - -See the [Bit.ly API](https://dev.bitly.com/v4/#operation/expandBitlink) for more information. - -### Parameters - -`bitlink_id` - The bitlink ID. - -`toJson` - Returns the full JSON response if `true` - -**Return** -The long URL or JSON response, or on error, an empty string/JSON object. - diff --git a/docs/net.thauvin.erik.bitly/-bitlinks/index.md b/docs/net.thauvin.erik.bitly/-bitlinks/index.md deleted file mode 100644 index 4899f8e..0000000 --- a/docs/net.thauvin.erik.bitly/-bitlinks/index.md +++ /dev/null @@ -1,31 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitlinks](./index.md) - -# Bitlinks - -`open class Bitlinks` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitlinks.kt#L47) - -Provides functions to create and manage [Bitlinks](https://dev.bitly.com/v4/#tag/Bitlinks). - -See the [Bitly API](https://dev.bitly.com/v4/#tag/Bitlinks) for more information. - -### Constructors - -| Name | Summary | -|---|---| -| [<init>](-init-.md) | Provides functions to create and manage [Bitlinks](https://dev.bitly.com/v4/#tag/Bitlinks).`Bitlinks(accessToken: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` | - -### Properties - -| Name | Summary | -|---|---| -| [lastCallResponse](last-call-response.md) | The last API call response.`var lastCallResponse: `[`CallResponse`](../-call-response/index.md) | - -### Functions - -| Name | Summary | -|---|---| -| [clicks](clicks.md) | Returns the click counts for a specified Bitlink.`fun clicks(bitlink: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, unit: `[`Units`](../-units/index.md)` = Units.DAY, units: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)` = -1, size: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)` = 50, unit_reference: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, toJson: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [create](create.md) | Converts a long url to a Bitlink and sets additional parameters.`fun create(domain: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, title: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, group_guid: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, tags: `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`> = emptyArray(), deeplinks: `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`Map`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>> = emptyArray(), long_url: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, toJson: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [expand](expand.md) | Expands a Bitlink.`fun expand(bitlink_id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, toJson: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [shorten](shorten.md) | Shortens a long URL.`fun shorten(long_url: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, group_guid: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, domain: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, toJson: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [update](update.md) | Updates fields in the Bitlink.`fun update(bitlink: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, references: `[`Map`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`> = emptyMap(), archived: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false, tags: `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`> = emptyArray(), created_at: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, title: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, deeplinks: `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`Map`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>> = emptyArray(), created_by: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, long_url: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, client_id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, custom_bitlinks: `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`> = emptyArray(), link: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, toJson: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | diff --git a/docs/net.thauvin.erik.bitly/-bitlinks/last-call-response.md b/docs/net.thauvin.erik.bitly/-bitlinks/last-call-response.md deleted file mode 100644 index 09644fb..0000000 --- a/docs/net.thauvin.erik.bitly/-bitlinks/last-call-response.md +++ /dev/null @@ -1,8 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitlinks](index.md) / [lastCallResponse](./last-call-response.md) - -# lastCallResponse - -`var lastCallResponse: `[`CallResponse`](../-call-response/index.md) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitlinks.kt#L51) - -The last API call response. - diff --git a/docs/net.thauvin.erik.bitly/-bitlinks/shorten.md b/docs/net.thauvin.erik.bitly/-bitlinks/shorten.md deleted file mode 100644 index 9138986..0000000 --- a/docs/net.thauvin.erik.bitly/-bitlinks/shorten.md +++ /dev/null @@ -1,19 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitlinks](index.md) / [shorten](./shorten.md) - -# shorten - -`@Synchronized @JvmOverloads fun shorten(long_url: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, group_guid: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, domain: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, toJson: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitlinks.kt#L195) - -Shortens a long URL. - -See the [Bit.ly API](https://dev.bitly.com/v4/#operation/createBitlink) for more information. - -### Parameters - -`long_url` - The long URL. - -`toJson` - Returns the full JSON response if `true` - -**Return** -The short URL or JSON response, or on error, the [long_url](shorten.md#net.thauvin.erik.bitly.Bitlinks$shorten(kotlin.String, kotlin.String, kotlin.String, kotlin.Boolean)/long_url) or an empty JSON object. - diff --git a/docs/net.thauvin.erik.bitly/-bitlinks/update.md b/docs/net.thauvin.erik.bitly/-bitlinks/update.md deleted file mode 100644 index b7bb0c4..0000000 --- a/docs/net.thauvin.erik.bitly/-bitlinks/update.md +++ /dev/null @@ -1,20 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitlinks](index.md) / [update](./update.md) - -# update - -`@Synchronized @JvmOverloads fun update(bitlink: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, references: `[`Map`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`> = emptyMap(), archived: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false, tags: `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`> = emptyArray(), created_at: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, title: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, deeplinks: `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`Map`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>> = emptyArray(), created_by: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, long_url: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, client_id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, custom_bitlinks: `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`> = emptyArray(), link: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY, toJson: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)` = false): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitlinks.kt#L233) - -Updates fields in the Bitlink. - -See the [Bit.ly API](https://dev.bitly.com/v4/#operation/updateBitlink) for more information. - -### Parameters - -`toJson` - Returns the full JSON response if `true` - -**Oaran** -bitlink A Bitlink made of the domain and hash. - -**Return** -`true` is the update was successful, `false` otherwise, or JSON response. - diff --git a/docs/net.thauvin.erik.bitly/-bitly/-init-.md b/docs/net.thauvin.erik.bitly/-bitly/-init-.md deleted file mode 100644 index 9e08e63..0000000 --- a/docs/net.thauvin.erik.bitly/-bitly/-init-.md +++ /dev/null @@ -1,41 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitly](index.md) / [<init>](./-init-.md) - -# <init> - -`Bitly(accessToken: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` - -Creates a new instance using an [API Access Token](access-token.md). - -### Parameters - -`accessToken` - The API access token.`Bitly(properties: `[`Properties`](https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html)`, key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.ENV_ACCESS_TOKEN)` - -Creates a new instance using a [Properties](-init-.md#net.thauvin.erik.bitly.Bitly$(java.util.Properties, kotlin.String)/properties) and [Property Key](-init-.md#net.thauvin.erik.bitly.Bitly$(java.util.Properties, kotlin.String)/key). - -### Parameters - -`properties` - The properties. - -`key` - The property key containing the [API Access Token](access-token.md).`Bitly(propertiesFilePath: `[`Path`](https://docs.oracle.com/javase/8/docs/api/java/nio/file/Path.html)`, key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.ENV_ACCESS_TOKEN)` - -Creates a new instance using a [Properties File Path](-init-.md#net.thauvin.erik.bitly.Bitly$(java.nio.file.Path, kotlin.String)/propertiesFilePath) and [Property Key](-init-.md#net.thauvin.erik.bitly.Bitly$(java.nio.file.Path, kotlin.String)/key). - -### Parameters - -`propertiesFilePath` - The properties file path. - -`key` - The property key containing the [API Access Token](access-token.md).`Bitly(propertiesFile: `[`File`](https://docs.oracle.com/javase/8/docs/api/java/io/File.html)`, key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.ENV_ACCESS_TOKEN)` - -Creates a new instance using a [Properties File](-init-.md#net.thauvin.erik.bitly.Bitly$(java.io.File, kotlin.String)/propertiesFile) and [Property Key](-init-.md#net.thauvin.erik.bitly.Bitly$(java.io.File, kotlin.String)/key). - -### Parameters - -`propertiesFile` - The properties file. - -`key` - The property key containing the [API Access Token](access-token.md).`Bitly()` - -Creates new instance. - -**Constructor** -Creates new instance. - diff --git a/docs/net.thauvin.erik.bitly/-bitly/access-token.md b/docs/net.thauvin.erik.bitly/-bitly/access-token.md deleted file mode 100644 index a782651..0000000 --- a/docs/net.thauvin.erik.bitly/-bitly/access-token.md +++ /dev/null @@ -1,11 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitly](index.md) / [accessToken](./access-token.md) - -# accessToken - -`var accessToken: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitly.kt#L51) - -The API access token. - -See [Generic Access Token](https://bitly.is/accesstoken) or -[Authentication](https://dev.bitly.com/v4/#section/Authentication). - diff --git a/docs/net.thauvin.erik.bitly/-bitly/bitlinks.md b/docs/net.thauvin.erik.bitly/-bitly/bitlinks.md deleted file mode 100644 index 7df88f4..0000000 --- a/docs/net.thauvin.erik.bitly/-bitly/bitlinks.md +++ /dev/null @@ -1,8 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitly](index.md) / [bitlinks](./bitlinks.md) - -# bitlinks - -`fun bitlinks(): `[`Bitlinks`](../-bitlinks/index.md) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitly.kt#L106) - -Returns a new [Bitlinks](../-bitlinks/index.md) instance. - diff --git a/docs/net.thauvin.erik.bitly/-bitly/call.md b/docs/net.thauvin.erik.bitly/-bitly/call.md deleted file mode 100644 index ec60cbd..0000000 --- a/docs/net.thauvin.erik.bitly/-bitly/call.md +++ /dev/null @@ -1,19 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitly](index.md) / [call](./call.md) - -# call - -`@JvmOverloads fun call(endPoint: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, params: `[`Map`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html)`> = emptyMap(), method: `[`Methods`](../-methods/index.md)` = Methods.POST): `[`CallResponse`](../-call-response/index.md) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitly.kt#L117) - -Executes an API call. - -### Parameters - -`endPoint` - The REST endpoint. (eg. `https://api-ssl.bitly.com/v4/shorten`) - -`params` - The request parameters key/value map. - -`method` - The submission [Method](../-methods/index.md). - -**Return** -The response (JSON) from the API. - diff --git a/docs/net.thauvin.erik.bitly/-bitly/index.md b/docs/net.thauvin.erik.bitly/-bitly/index.md deleted file mode 100644 index 6f3d1fb..0000000 --- a/docs/net.thauvin.erik.bitly/-bitly/index.md +++ /dev/null @@ -1,26 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Bitly](./index.md) - -# Bitly - -`open class Bitly` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Bitly.kt#L45) - -Provides access to the [Bitly API v4](https://dev.bitly.com/v4). - -### Constructors - -| Name | Summary | -|---|---| -| [<init>](-init-.md) | Creates a new instance using an [API Access Token](access-token.md).`Bitly(accessToken: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)`
Creates a new instance using a [Properties](-init-.md#net.thauvin.erik.bitly.Bitly$(java.util.Properties, kotlin.String)/properties) and [Property Key](-init-.md#net.thauvin.erik.bitly.Bitly$(java.util.Properties, kotlin.String)/key).`Bitly(properties: `[`Properties`](https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html)`, key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.ENV_ACCESS_TOKEN)`
Creates a new instance using a [Properties File Path](-init-.md#net.thauvin.erik.bitly.Bitly$(java.nio.file.Path, kotlin.String)/propertiesFilePath) and [Property Key](-init-.md#net.thauvin.erik.bitly.Bitly$(java.nio.file.Path, kotlin.String)/key).`Bitly(propertiesFilePath: `[`Path`](https://docs.oracle.com/javase/8/docs/api/java/nio/file/Path.html)`, key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.ENV_ACCESS_TOKEN)`
Creates a new instance using a [Properties File](-init-.md#net.thauvin.erik.bitly.Bitly$(java.io.File, kotlin.String)/propertiesFile) and [Property Key](-init-.md#net.thauvin.erik.bitly.Bitly$(java.io.File, kotlin.String)/key).`Bitly(propertiesFile: `[`File`](https://docs.oracle.com/javase/8/docs/api/java/io/File.html)`, key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.ENV_ACCESS_TOKEN)`
Creates new instance.`Bitly()` | - -### Properties - -| Name | Summary | -|---|---| -| [accessToken](access-token.md) | The API access token.`var accessToken: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | - -### Functions - -| Name | Summary | -|---|---| -| [bitlinks](bitlinks.md) | Returns a new [Bitlinks](../-bitlinks/index.md) instance.`fun bitlinks(): `[`Bitlinks`](../-bitlinks/index.md) | -| [call](call.md) | Executes an API call.`fun call(endPoint: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, params: `[`Map`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html)`> = emptyMap(), method: `[`Methods`](../-methods/index.md)` = Methods.POST): `[`CallResponse`](../-call-response/index.md) | diff --git a/docs/net.thauvin.erik.bitly/-call-response/-init-.md b/docs/net.thauvin.erik.bitly/-call-response/-init-.md deleted file mode 100644 index d40e7c6..0000000 --- a/docs/net.thauvin.erik.bitly/-call-response/-init-.md +++ /dev/null @@ -1,8 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [CallResponse](index.md) / [<init>](./-init-.md) - -# <init> - -`CallResponse(body: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY_JSON, resultCode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)` = -1)` - -Provides a data class to hold the JSON response. - diff --git a/docs/net.thauvin.erik.bitly/-call-response/body.md b/docs/net.thauvin.erik.bitly/-call-response/body.md deleted file mode 100644 index b97c76a..0000000 --- a/docs/net.thauvin.erik.bitly/-call-response/body.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [CallResponse](index.md) / [body](./body.md) - -# body - -`var body: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/CallResponse.kt#L38) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-call-response/index.md b/docs/net.thauvin.erik.bitly/-call-response/index.md deleted file mode 100644 index b0559fb..0000000 --- a/docs/net.thauvin.erik.bitly/-call-response/index.md +++ /dev/null @@ -1,21 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [CallResponse](./index.md) - -# CallResponse - -`data class CallResponse` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/CallResponse.kt#L38) - -Provides a data class to hold the JSON response. - -### Constructors - -| Name | Summary | -|---|---| -| [<init>](-init-.md) | Provides a data class to hold the JSON response.`CallResponse(body: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)` = Constants.EMPTY_JSON, resultCode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)` = -1)` | - -### Properties - -| Name | Summary | -|---|---| -| [body](body.md) | `var body: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [isSuccessful](is-successful.md) | `val isSuccessful: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) | -| [resultCode](result-code.md) | `var resultCode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) | diff --git a/docs/net.thauvin.erik.bitly/-call-response/is-successful.md b/docs/net.thauvin.erik.bitly/-call-response/is-successful.md deleted file mode 100644 index 35e46ed..0000000 --- a/docs/net.thauvin.erik.bitly/-call-response/is-successful.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [CallResponse](index.md) / [isSuccessful](./is-successful.md) - -# isSuccessful - -`val isSuccessful: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/CallResponse.kt#L39) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-call-response/result-code.md b/docs/net.thauvin.erik.bitly/-call-response/result-code.md deleted file mode 100644 index 6fee1af..0000000 --- a/docs/net.thauvin.erik.bitly/-call-response/result-code.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [CallResponse](index.md) / [resultCode](./result-code.md) - -# resultCode - -`var resultCode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/CallResponse.kt#L38) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-call-response/to-json.md b/docs/net.thauvin.erik.bitly/-call-response/to-json.md deleted file mode 100644 index dd05d24..0000000 --- a/docs/net.thauvin.erik.bitly/-call-response/to-json.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [CallResponse](index.md) / [toJson](./to-json.md) - -# toJson - -`fun toJson(): JSONObject` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/CallResponse.kt#L44) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.md b/docs/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.md deleted file mode 100644 index c24758f..0000000 --- a/docs/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.md +++ /dev/null @@ -1,11 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Constants](index.md) / [API_BASE_URL](./-a-p-i_-b-a-s-e_-u-r-l.md) - -# API_BASE_URL - -`const val API_BASE_URL: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt#L43) - -The Bitly API base URL. - -**Value** -`https://api-ssl.bitly.com/v4` - diff --git a/docs/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.md b/docs/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.md deleted file mode 100644 index 8ffe3dd..0000000 --- a/docs/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.md +++ /dev/null @@ -1,8 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Constants](index.md) / [EMPTY](./-e-m-p-t-y.md) - -# EMPTY - -`const val EMPTY: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt#L53) - -Empty String. - diff --git a/docs/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.md b/docs/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.md deleted file mode 100644 index 839f6dd..0000000 --- a/docs/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.md +++ /dev/null @@ -1,8 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Constants](index.md) / [EMPTY_JSON](./-e-m-p-t-y_-j-s-o-n.md) - -# EMPTY_JSON - -`const val EMPTY_JSON: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt#L56) - -Empty JSON Object. - diff --git a/docs/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.md b/docs/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.md deleted file mode 100644 index 8d2a60e..0000000 --- a/docs/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.md +++ /dev/null @@ -1,11 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Constants](index.md) / [ENV_ACCESS_TOKEN](./-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.md) - -# ENV_ACCESS_TOKEN - -`const val ENV_ACCESS_TOKEN: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt#L50) - -The API access token environment variable. - -**Value** -`BITLY_ACCESS_TOKEN` - diff --git a/docs/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.md b/docs/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.md deleted file mode 100644 index bff00e1..0000000 --- a/docs/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.md +++ /dev/null @@ -1,11 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Constants](index.md) / [FALSE](./-f-a-l-s-e.md) - -# FALSE - -`const val FALSE: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt#L63) - -False - -**Value** -`false` - diff --git a/docs/net.thauvin.erik.bitly/-constants/-t-r-u-e.md b/docs/net.thauvin.erik.bitly/-constants/-t-r-u-e.md deleted file mode 100644 index 38eaaac..0000000 --- a/docs/net.thauvin.erik.bitly/-constants/-t-r-u-e.md +++ /dev/null @@ -1,11 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Constants](index.md) / [TRUE](./-t-r-u-e.md) - -# TRUE - -`const val TRUE: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt#L70) - -True - -**Value** -`true` - diff --git a/docs/net.thauvin.erik.bitly/-constants/index.md b/docs/net.thauvin.erik.bitly/-constants/index.md deleted file mode 100644 index 1380cdf..0000000 --- a/docs/net.thauvin.erik.bitly/-constants/index.md +++ /dev/null @@ -1,18 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Constants](./index.md) - -# Constants - -`open class Constants` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt#L36) - -Provides the constants for this package. - -### Companion Object Properties - -| Name | Summary | -|---|---| -| [API_BASE_URL](-a-p-i_-b-a-s-e_-u-r-l.md) | The Bitly API base URL.`const val API_BASE_URL: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [EMPTY](-e-m-p-t-y.md) | Empty String.`const val EMPTY: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [EMPTY_JSON](-e-m-p-t-y_-j-s-o-n.md) | Empty JSON Object.`const val EMPTY_JSON: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [ENV_ACCESS_TOKEN](-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.md) | The API access token environment variable.`const val ENV_ACCESS_TOKEN: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [FALSE](-f-a-l-s-e.md) | False`const val FALSE: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [TRUE](-t-r-u-e.md) | True`const val TRUE: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | diff --git a/docs/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e.md b/docs/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e.md deleted file mode 100644 index 3e1046e..0000000 --- a/docs/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Methods](index.md) / [DELETE](./-d-e-l-e-t-e.md) - -# DELETE - -`DELETE` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Methods.kt#L39) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-methods/-g-e-t.md b/docs/net.thauvin.erik.bitly/-methods/-g-e-t.md deleted file mode 100644 index f916987..0000000 --- a/docs/net.thauvin.erik.bitly/-methods/-g-e-t.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Methods](index.md) / [GET](./-g-e-t.md) - -# GET - -`GET` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Methods.kt#L39) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-methods/-p-a-t-c-h.md b/docs/net.thauvin.erik.bitly/-methods/-p-a-t-c-h.md deleted file mode 100644 index 7997f2b..0000000 --- a/docs/net.thauvin.erik.bitly/-methods/-p-a-t-c-h.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Methods](index.md) / [PATCH](./-p-a-t-c-h.md) - -# PATCH - -`PATCH` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Methods.kt#L39) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-methods/-p-o-s-t.md b/docs/net.thauvin.erik.bitly/-methods/-p-o-s-t.md deleted file mode 100644 index 323171e..0000000 --- a/docs/net.thauvin.erik.bitly/-methods/-p-o-s-t.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Methods](index.md) / [POST](./-p-o-s-t.md) - -# POST - -`POST` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Methods.kt#L39) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-methods/index.md b/docs/net.thauvin.erik.bitly/-methods/index.md deleted file mode 100644 index 3d967d1..0000000 --- a/docs/net.thauvin.erik.bitly/-methods/index.md +++ /dev/null @@ -1,16 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Methods](./index.md) - -# Methods - -`enum class Methods` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Methods.kt#L38) - -Provides HTTP methods definitions. - -### Enum Values - -| Name | Summary | -|---|---| -| [DELETE](-d-e-l-e-t-e.md) | | -| [GET](-g-e-t.md) | | -| [PATCH](-p-a-t-c-h.md) | | -| [POST](-p-o-s-t.md) | | diff --git a/docs/net.thauvin.erik.bitly/-units/-d-a-y.md b/docs/net.thauvin.erik.bitly/-units/-d-a-y.md deleted file mode 100644 index 7c7b908..0000000 --- a/docs/net.thauvin.erik.bitly/-units/-d-a-y.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Units](index.md) / [DAY](./-d-a-y.md) - -# DAY - -`DAY` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Units.kt#L42) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-units/-h-o-u-r.md b/docs/net.thauvin.erik.bitly/-units/-h-o-u-r.md deleted file mode 100644 index ddd5397..0000000 --- a/docs/net.thauvin.erik.bitly/-units/-h-o-u-r.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Units](index.md) / [HOUR](./-h-o-u-r.md) - -# HOUR - -`HOUR` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Units.kt#L41) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e.md b/docs/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e.md deleted file mode 100644 index d770582..0000000 --- a/docs/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Units](index.md) / [MINUTE](./-m-i-n-u-t-e.md) - -# MINUTE - -`MINUTE` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Units.kt#L40) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-units/-m-o-n-t-h.md b/docs/net.thauvin.erik.bitly/-units/-m-o-n-t-h.md deleted file mode 100644 index 5d58554..0000000 --- a/docs/net.thauvin.erik.bitly/-units/-m-o-n-t-h.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Units](index.md) / [MONTH](./-m-o-n-t-h.md) - -# MONTH - -`MONTH` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Units.kt#L44) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-units/-w-e-e-k.md b/docs/net.thauvin.erik.bitly/-units/-w-e-e-k.md deleted file mode 100644 index 9c6fcdd..0000000 --- a/docs/net.thauvin.erik.bitly/-units/-w-e-e-k.md +++ /dev/null @@ -1,5 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Units](index.md) / [WEEK](./-w-e-e-k.md) - -# WEEK - -`WEEK` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Units.kt#L43) \ No newline at end of file diff --git a/docs/net.thauvin.erik.bitly/-units/index.md b/docs/net.thauvin.erik.bitly/-units/index.md deleted file mode 100644 index 684b491..0000000 --- a/docs/net.thauvin.erik.bitly/-units/index.md +++ /dev/null @@ -1,17 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Units](./index.md) - -# Units - -`enum class Units` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Units.kt#L39) - -Provides units of time definitions. - -### Enum Values - -| Name | Summary | -|---|---| -| [MINUTE](-m-i-n-u-t-e.md) | | -| [HOUR](-h-o-u-r.md) | | -| [DAY](-d-a-y.md) | | -| [WEEK](-w-e-e-k.md) | | -| [MONTH](-m-o-n-t-h.md) | | diff --git a/docs/net.thauvin.erik.bitly/-utils/call.md b/docs/net.thauvin.erik.bitly/-utils/call.md deleted file mode 100644 index bc82ad2..0000000 --- a/docs/net.thauvin.erik.bitly/-utils/call.md +++ /dev/null @@ -1,21 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Utils](index.md) / [call](./call.md) - -# call - -`@JvmOverloads fun call(accessToken: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, endPoint: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, params: `[`Map`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html)`> = emptyMap(), method: `[`Methods`](../-methods/index.md)` = Methods.POST): `[`CallResponse`](../-call-response/index.md) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Utils.kt#L65) - -Executes an API call. - -### Parameters - -`accessToken` - The API access token. - -`endPoint` - The REST endpoint. (eg. `https://api-ssl.bitly.com/v4/shorten`) - -`params` - The request parameters key/value map. - -`method` - The submission [Method](../-methods/index.md). - -**Return** -The response (JSON) from the API. - diff --git a/docs/net.thauvin.erik.bitly/-utils/index.md b/docs/net.thauvin.erik.bitly/-utils/index.md deleted file mode 100644 index 8e4086f..0000000 --- a/docs/net.thauvin.erik.bitly/-utils/index.md +++ /dev/null @@ -1,22 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Utils](./index.md) - -# Utils - -`open class Utils` [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Utils.kt#L50) - -Provides useful generic functions. - -### Companion Object Properties - -| Name | Summary | -|---|---| -| [logger](logger.md) | The logger instance.`val logger: `[`Logger`](https://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html) | - -### Companion Object Functions - -| Name | Summary | -|---|---| -| [call](call.md) | Executes an API call.`fun call(accessToken: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, endPoint: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, params: `[`Map`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, `[`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html)`> = emptyMap(), method: `[`Methods`](../-methods/index.md)` = Methods.POST): `[`CallResponse`](../-call-response/index.md) | -| [isValidUrl](is-valid-url.md) | Validates a URL.`fun `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`.isValidUrl(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) | -| [removeHttp](remove-http.md) | Removes http(s) scheme from string.`fun `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`.removeHttp(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | -| [toEndPoint](to-end-point.md) | Builds the full API endpoint URL using the [Constants.API_BASE_URL](../-constants/-a-p-i_-b-a-s-e_-u-r-l.md).`fun `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`.toEndPoint(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | diff --git a/docs/net.thauvin.erik.bitly/-utils/is-valid-url.md b/docs/net.thauvin.erik.bitly/-utils/is-valid-url.md deleted file mode 100644 index 81a81ac..0000000 --- a/docs/net.thauvin.erik.bitly/-utils/is-valid-url.md +++ /dev/null @@ -1,8 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Utils](index.md) / [isValidUrl](./is-valid-url.md) - -# isValidUrl - -`fun `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`.isValidUrl(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Utils.kt#L149) - -Validates a URL. - diff --git a/docs/net.thauvin.erik.bitly/-utils/logger.md b/docs/net.thauvin.erik.bitly/-utils/logger.md deleted file mode 100644 index a788d7a..0000000 --- a/docs/net.thauvin.erik.bitly/-utils/logger.md +++ /dev/null @@ -1,12 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Utils](index.md) / [logger](./logger.md) - -# logger - -`val logger: `[`Logger`](https://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Utils.kt#L53) - -The logger instance. - -**Getter** - -The logger instance. - diff --git a/docs/net.thauvin.erik.bitly/-utils/remove-http.md b/docs/net.thauvin.erik.bitly/-utils/remove-http.md deleted file mode 100644 index ff9aa3a..0000000 --- a/docs/net.thauvin.erik.bitly/-utils/remove-http.md +++ /dev/null @@ -1,8 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Utils](index.md) / [removeHttp](./remove-http.md) - -# removeHttp - -`fun `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`.removeHttp(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Utils.kt#L164) - -Removes http(s) scheme from string. - diff --git a/docs/net.thauvin.erik.bitly/-utils/to-end-point.md b/docs/net.thauvin.erik.bitly/-utils/to-end-point.md deleted file mode 100644 index 8ad55b5..0000000 --- a/docs/net.thauvin.erik.bitly/-utils/to-end-point.md +++ /dev/null @@ -1,8 +0,0 @@ -[docs](../../index.md) / [net.thauvin.erik.bitly](../index.md) / [Utils](index.md) / [toEndPoint](./to-end-point.md) - -# toEndPoint - -`fun `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`.toEndPoint(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/ethauvin/bitly-shorten/tree/master/src/main/kotlin/net/thauvin/erik/bitly/Utils.kt#L171) - -Builds the full API endpoint URL using the [Constants.API_BASE_URL](../-constants/-a-p-i_-b-a-s-e_-u-r-l.md). - diff --git a/docs/net.thauvin.erik.bitly/index.md b/docs/net.thauvin.erik.bitly/index.md deleted file mode 100644 index a1d8eaf..0000000 --- a/docs/net.thauvin.erik.bitly/index.md +++ /dev/null @@ -1,17 +0,0 @@ -[docs](../index.md) / [net.thauvin.erik.bitly](./index.md) - -## Package net.thauvin.erik.bitly - -Provides the classes necessary to access the [Bitly API v4](https://dev.bitly.com/v4). - -### Types - -| Name | Summary | -|---|---| -| [Bitlinks](-bitlinks/index.md) | Provides functions to create and manage [Bitlinks](https://dev.bitly.com/v4/#tag/Bitlinks).`open class Bitlinks` | -| [Bitly](-bitly/index.md) | Provides access to the [Bitly API v4](https://dev.bitly.com/v4).`open class Bitly` | -| [CallResponse](-call-response/index.md) | Provides a data class to hold the JSON response.`data class CallResponse` | -| [Constants](-constants/index.md) | Provides the constants for this package.`open class Constants` | -| [Methods](-methods/index.md) | Provides HTTP methods definitions.`enum class Methods` | -| [Units](-units/index.md) | Provides units of time definitions.`enum class Units` | -| [Utils](-utils/index.md) | Provides useful generic functions.`open class Utils` | diff --git a/docs/package-list b/docs/package-list deleted file mode 100644 index 349c78e..0000000 --- a/docs/package-list +++ /dev/null @@ -1,4 +0,0 @@ -$dokka.format:gfm -$dokka.linkExtension:md - -net.thauvin.erik.bitly diff --git a/docs/scripts/navigation-pane.json b/docs/scripts/navigation-pane.json deleted file mode 100644 index b1638db..0000000 --- a/docs/scripts/navigation-pane.json +++ /dev/null @@ -1 +0,0 @@ -[{"name":"bitly-shorten","description":null,"location":"index.html","searchKeys":["bitly-shorten"]},{"name":"net.thauvin.erik.bitly","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/index.html","searchKeys":["net.thauvin.erik.bitly"]},{"name":"Bitlinks","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/index.html","searchKeys":["Bitlinks"]},{"name":"Bitly","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/index.html","searchKeys":["Bitly"]},{"name":"CallResponse","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/index.html","searchKeys":["CallResponse"]},{"name":"Constants","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-constants/index.html","searchKeys":["Constants"]},{"name":"Methods","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-methods/index.html","searchKeys":["Methods"]},{"name":"DELETE","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html","searchKeys":["DELETE"]},{"name":"GET","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html","searchKeys":["GET"]},{"name":"PATCH","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html","searchKeys":["PATCH"]},{"name":"POST","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html","searchKeys":["POST"]},{"name":"Units","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-units/index.html","searchKeys":["Units"]},{"name":"DAY","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html","searchKeys":["DAY"]},{"name":"HOUR","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html","searchKeys":["HOUR"]},{"name":"MINUTE","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html","searchKeys":["MINUTE"]},{"name":"MONTH","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html","searchKeys":["MONTH"]},{"name":"WEEK","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html","searchKeys":["WEEK"]},{"name":"Utils","description":null,"location":"bitly-shorten/net.thauvin.erik.bitly/-utils/index.html","searchKeys":["Utils"]}] diff --git a/docs/scripts/pages.json b/docs/scripts/pages.json index 05f79bc..51e370d 100644 --- a/docs/scripts/pages.json +++ b/docs/scripts/pages.json @@ -1 +1 @@ -[{"name":"DAY","description":"net.thauvin.erik.bitly.Units.DAY","location":"bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html","searchKeys":["DAY","DAY","net.thauvin.erik.bitly.Units.DAY"]},{"name":"DELETE","description":"net.thauvin.erik.bitly.Methods.DELETE","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html","searchKeys":["DELETE","DELETE","net.thauvin.erik.bitly.Methods.DELETE"]},{"name":"GET","description":"net.thauvin.erik.bitly.Methods.GET","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html","searchKeys":["GET","GET","net.thauvin.erik.bitly.Methods.GET"]},{"name":"HOUR","description":"net.thauvin.erik.bitly.Units.HOUR","location":"bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html","searchKeys":["HOUR","HOUR","net.thauvin.erik.bitly.Units.HOUR"]},{"name":"MINUTE","description":"net.thauvin.erik.bitly.Units.MINUTE","location":"bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html","searchKeys":["MINUTE","MINUTE","net.thauvin.erik.bitly.Units.MINUTE"]},{"name":"MONTH","description":"net.thauvin.erik.bitly.Units.MONTH","location":"bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html","searchKeys":["MONTH","MONTH","net.thauvin.erik.bitly.Units.MONTH"]},{"name":"PATCH","description":"net.thauvin.erik.bitly.Methods.PATCH","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html","searchKeys":["PATCH","PATCH","net.thauvin.erik.bitly.Methods.PATCH"]},{"name":"POST","description":"net.thauvin.erik.bitly.Methods.POST","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html","searchKeys":["POST","POST","net.thauvin.erik.bitly.Methods.POST"]},{"name":"WEEK","description":"net.thauvin.erik.bitly.Units.WEEK","location":"bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html","searchKeys":["WEEK","WEEK","net.thauvin.erik.bitly.Units.WEEK"]},{"name":"class CreateConfig","description":"net.thauvin.erik.bitly.config.CreateConfig","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/index.html","searchKeys":["CreateConfig","class CreateConfig","net.thauvin.erik.bitly.config.CreateConfig"]},{"name":"class UpdateConfig","description":"net.thauvin.erik.bitly.config.UpdateConfig","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/index.html","searchKeys":["UpdateConfig","class UpdateConfig","net.thauvin.erik.bitly.config.UpdateConfig"]},{"name":"const val API_BASE_URL: String","description":"net.thauvin.erik.bitly.Constants.API_BASE_URL","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html","searchKeys":["API_BASE_URL","const val API_BASE_URL: String","net.thauvin.erik.bitly.Constants.API_BASE_URL"]},{"name":"const val EMPTY: String","description":"net.thauvin.erik.bitly.Constants.EMPTY","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html","searchKeys":["EMPTY","const val EMPTY: String","net.thauvin.erik.bitly.Constants.EMPTY"]},{"name":"const val EMPTY_JSON: String","description":"net.thauvin.erik.bitly.Constants.EMPTY_JSON","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html","searchKeys":["EMPTY_JSON","const val EMPTY_JSON: String","net.thauvin.erik.bitly.Constants.EMPTY_JSON"]},{"name":"const val ENV_ACCESS_TOKEN: String","description":"net.thauvin.erik.bitly.Constants.ENV_ACCESS_TOKEN","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html","searchKeys":["ENV_ACCESS_TOKEN","const val ENV_ACCESS_TOKEN: String","net.thauvin.erik.bitly.Constants.ENV_ACCESS_TOKEN"]},{"name":"const val FALSE: String","description":"net.thauvin.erik.bitly.Constants.FALSE","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.html","searchKeys":["FALSE","const val FALSE: String","net.thauvin.erik.bitly.Constants.FALSE"]},{"name":"const val TRUE: String","description":"net.thauvin.erik.bitly.Constants.TRUE","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-t-r-u-e.html","searchKeys":["TRUE","const val TRUE: String","net.thauvin.erik.bitly.Constants.TRUE"]},{"name":"constructor()","description":"net.thauvin.erik.bitly.Bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html","searchKeys":["Bitly","constructor()","net.thauvin.erik.bitly.Bitly.Bitly"]},{"name":"constructor(accessToken: String)","description":"net.thauvin.erik.bitly.Bitlinks.Bitlinks","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html","searchKeys":["Bitlinks","constructor(accessToken: String)","net.thauvin.erik.bitly.Bitlinks.Bitlinks"]},{"name":"constructor(accessToken: String)","description":"net.thauvin.erik.bitly.Bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html","searchKeys":["Bitly","constructor(accessToken: String)","net.thauvin.erik.bitly.Bitly.Bitly"]},{"name":"constructor(bitlink: String = Constants.EMPTY, references: Map = emptyMap(), archived: Boolean = false, tags: Array = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.Builder","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/-builder.html","searchKeys":["Builder","constructor(bitlink: String = Constants.EMPTY, references: Map = emptyMap(), archived: Boolean = false, tags: Array = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false)","net.thauvin.erik.bitly.config.UpdateConfig.Builder.Builder"]},{"name":"constructor(body: String = Constants.EMPTY_JSON, message: String = \"\", description: String = \"\", statusCode: Int = -1)","description":"net.thauvin.erik.bitly.CallResponse.CallResponse","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/-call-response.html","searchKeys":["CallResponse","constructor(body: String = Constants.EMPTY_JSON, message: String = \"\", description: String = \"\", statusCode: Int = -1)","net.thauvin.erik.bitly.CallResponse.CallResponse"]},{"name":"constructor(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.Builder","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/-builder.html","searchKeys":["Builder","constructor(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)","net.thauvin.erik.bitly.config.CreateConfig.Builder.Builder"]},{"name":"constructor(properties: Properties, key: String = Constants.ENV_ACCESS_TOKEN)","description":"net.thauvin.erik.bitly.Bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html","searchKeys":["Bitly","constructor(properties: Properties, key: String = Constants.ENV_ACCESS_TOKEN)","net.thauvin.erik.bitly.Bitly.Bitly"]},{"name":"constructor(propertiesFile: File, key: String = Constants.ENV_ACCESS_TOKEN)","description":"net.thauvin.erik.bitly.Bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html","searchKeys":["Bitly","constructor(propertiesFile: File, key: String = Constants.ENV_ACCESS_TOKEN)","net.thauvin.erik.bitly.Bitly.Bitly"]},{"name":"constructor(propertiesFilePath: Path, key: String = Constants.ENV_ACCESS_TOKEN)","description":"net.thauvin.erik.bitly.Bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html","searchKeys":["Bitly","constructor(propertiesFilePath: Path, key: String = Constants.ENV_ACCESS_TOKEN)","net.thauvin.erik.bitly.Bitly.Bitly"]},{"name":"data class Builder(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html","searchKeys":["Builder","data class Builder(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)","net.thauvin.erik.bitly.config.CreateConfig.Builder"]},{"name":"data class Builder(var bitlink: String = Constants.EMPTY, var references: Map = emptyMap(), var archived: Boolean = false, var tags: Array = emptyArray(), var created_at: String = Constants.EMPTY, var title: String = Constants.EMPTY, var deeplinks: Array> = emptyArray(), var created_by: String = Constants.EMPTY, var long_url: String = Constants.EMPTY, var client_id: String = Constants.EMPTY, var custom_bitlinks: Array = emptyArray(), var link: String = Constants.EMPTY, var id: String = Constants.EMPTY, var toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html","searchKeys":["Builder","data class Builder(var bitlink: String = Constants.EMPTY, var references: Map = emptyMap(), var archived: Boolean = false, var tags: Array = emptyArray(), var created_at: String = Constants.EMPTY, var title: String = Constants.EMPTY, var deeplinks: Array> = emptyArray(), var created_by: String = Constants.EMPTY, var long_url: String = Constants.EMPTY, var client_id: String = Constants.EMPTY, var custom_bitlinks: Array = emptyArray(), var link: String = Constants.EMPTY, var id: String = Constants.EMPTY, var toJson: Boolean = false)","net.thauvin.erik.bitly.config.UpdateConfig.Builder"]},{"name":"data class CallResponse(val body: String = Constants.EMPTY_JSON, val message: String = \"\", val description: String = \"\", val statusCode: Int = -1)","description":"net.thauvin.erik.bitly.CallResponse","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/index.html","searchKeys":["CallResponse","data class CallResponse(val body: String = Constants.EMPTY_JSON, val message: String = \"\", val description: String = \"\", val statusCode: Int = -1)","net.thauvin.erik.bitly.CallResponse"]},{"name":"enum Methods : Enum ","description":"net.thauvin.erik.bitly.Methods","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/index.html","searchKeys":["Methods","enum Methods : Enum ","net.thauvin.erik.bitly.Methods"]},{"name":"enum Units : Enum ","description":"net.thauvin.erik.bitly.Units","location":"bitly-shorten/net.thauvin.erik.bitly/-units/index.html","searchKeys":["Units","enum Units : Enum ","net.thauvin.erik.bitly.Units"]},{"name":"fun Logger.isSevereLoggable(): Boolean","description":"net.thauvin.erik.bitly.Utils.isSevereLoggable","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/is-severe-loggable.html","searchKeys":["isSevereLoggable","fun Logger.isSevereLoggable(): Boolean","net.thauvin.erik.bitly.Utils.isSevereLoggable"]},{"name":"fun String.isValidUrl(): Boolean","description":"net.thauvin.erik.bitly.Utils.isValidUrl","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/is-valid-url.html","searchKeys":["isValidUrl","fun String.isValidUrl(): Boolean","net.thauvin.erik.bitly.Utils.isValidUrl"]},{"name":"fun String.removeHttp(): String","description":"net.thauvin.erik.bitly.Utils.removeHttp","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/remove-http.html","searchKeys":["removeHttp","fun String.removeHttp(): String","net.thauvin.erik.bitly.Utils.removeHttp"]},{"name":"fun String.toEndPoint(): String","description":"net.thauvin.erik.bitly.Utils.toEndPoint","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/to-end-point.html","searchKeys":["toEndPoint","fun String.toEndPoint(): String","net.thauvin.erik.bitly.Utils.toEndPoint"]},{"name":"fun archived(archived: Boolean): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.archived","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html","searchKeys":["archived","fun archived(archived: Boolean): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.archived"]},{"name":"fun bitlink(bitlink: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.bitlink","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html","searchKeys":["bitlink","fun bitlink(bitlink: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.bitlink"]},{"name":"fun bitlinks(): Bitlinks","description":"net.thauvin.erik.bitly.Bitly.bitlinks","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html","searchKeys":["bitlinks","fun bitlinks(): Bitlinks","net.thauvin.erik.bitly.Bitly.bitlinks"]},{"name":"fun build(): CreateConfig","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.build","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/build.html","searchKeys":["build","fun build(): CreateConfig","net.thauvin.erik.bitly.config.CreateConfig.Builder.build"]},{"name":"fun build(): UpdateConfig","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.build","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html","searchKeys":["build","fun build(): UpdateConfig","net.thauvin.erik.bitly.config.UpdateConfig.Builder.build"]},{"name":"fun call(accessToken: String, endPoint: String, params: Map = emptyMap(), method: Methods = Methods.POST): CallResponse","description":"net.thauvin.erik.bitly.Utils.call","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/call.html","searchKeys":["call","fun call(accessToken: String, endPoint: String, params: Map = emptyMap(), method: Methods = Methods.POST): CallResponse","net.thauvin.erik.bitly.Utils.call"]},{"name":"fun call(endPoint: String, params: Map = emptyMap(), method: Methods = Methods.POST): CallResponse","description":"net.thauvin.erik.bitly.Bitly.call","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/call.html","searchKeys":["call","fun call(endPoint: String, params: Map = emptyMap(), method: Methods = Methods.POST): CallResponse","net.thauvin.erik.bitly.Bitly.call"]},{"name":"fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, size: Int = 50, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.clicks","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html","searchKeys":["clicks","fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, size: Int = 50, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.clicks"]},{"name":"fun clientId(client_id: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.clientId","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client-id.html","searchKeys":["clientId","fun clientId(client_id: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.clientId"]},{"name":"fun create(config: CreateConfig): String","description":"net.thauvin.erik.bitly.Bitlinks.create","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/create.html","searchKeys":["create","fun create(config: CreateConfig): String","net.thauvin.erik.bitly.Bitlinks.create"]},{"name":"fun create(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.create","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/create.html","searchKeys":["create","fun create(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.create"]},{"name":"fun createdAt(created_at: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.createdAt","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html","searchKeys":["createdAt","fun createdAt(created_at: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.createdAt"]},{"name":"fun createdBy(created_by: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.createdBy","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html","searchKeys":["createdBy","fun createdBy(created_by: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.createdBy"]},{"name":"fun customBitlinks(custom_bitlinks: Array): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.customBitlinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html","searchKeys":["customBitlinks","fun customBitlinks(custom_bitlinks: Array): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.customBitlinks"]},{"name":"fun deeplinks(deeplinks: Array>): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.deeplinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html","searchKeys":["deeplinks","fun deeplinks(deeplinks: Array>): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.deeplinks"]},{"name":"fun deeplinks(deeplinks: Array>): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.deeplinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deeplinks.html","searchKeys":["deeplinks","fun deeplinks(deeplinks: Array>): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.deeplinks"]},{"name":"fun domain(domain: String): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.domain","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.html","searchKeys":["domain","fun domain(domain: String): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.domain"]},{"name":"fun expand(bitlink_id: String, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.expand","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/expand.html","searchKeys":["expand","fun expand(bitlink_id: String, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.expand"]},{"name":"fun group_guid(group_guid: String): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.group_guid","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group_guid.html","searchKeys":["group_guid","fun group_guid(group_guid: String): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.group_guid"]},{"name":"fun id(id: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.id","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html","searchKeys":["id","fun id(id: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.id"]},{"name":"fun link(link: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.link","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html","searchKeys":["link","fun link(link: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.link"]},{"name":"fun longUrl(long_url: String): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.longUrl","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long-url.html","searchKeys":["longUrl","fun longUrl(long_url: String): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.longUrl"]},{"name":"fun longUrl(long_url: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.longUrl","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html","searchKeys":["longUrl","fun longUrl(long_url: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.longUrl"]},{"name":"fun references(references: Map): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.references","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html","searchKeys":["references","fun references(references: Map): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.references"]},{"name":"fun shorten(long_url: String, group_guid: String = Constants.EMPTY, domain: String = Constants.EMPTY, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.shorten","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html","searchKeys":["shorten","fun shorten(long_url: String, group_guid: String = Constants.EMPTY, domain: String = Constants.EMPTY, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.shorten"]},{"name":"fun tags(tags: Array): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.tags","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.html","searchKeys":["tags","fun tags(tags: Array): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.tags"]},{"name":"fun tags(tags: Array): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.tags","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html","searchKeys":["tags","fun tags(tags: Array): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.tags"]},{"name":"fun title(title: String): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.title","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.html","searchKeys":["title","fun title(title: String): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.title"]},{"name":"fun title(title: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.title","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html","searchKeys":["title","fun title(title: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.title"]},{"name":"fun toJson(toJson: Boolean): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.toJson","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html","searchKeys":["toJson","fun toJson(toJson: Boolean): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.toJson"]},{"name":"fun toJson(toJson: Boolean): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.toJson","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html","searchKeys":["toJson","fun toJson(toJson: Boolean): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.toJson"]},{"name":"fun update(bitlink: String, references: Map = emptyMap(), archived: Boolean = false, tags: Array = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.update","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/update.html","searchKeys":["update","fun update(bitlink: String, references: Map = emptyMap(), archived: Boolean = false, tags: Array = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.update"]},{"name":"fun update(config: UpdateConfig): String","description":"net.thauvin.erik.bitly.Bitlinks.update","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/update.html","searchKeys":["update","fun update(config: UpdateConfig): String","net.thauvin.erik.bitly.Bitlinks.update"]},{"name":"fun valueOf(value: String): Methods","description":"net.thauvin.erik.bitly.Methods.valueOf","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): Methods","net.thauvin.erik.bitly.Methods.valueOf"]},{"name":"fun valueOf(value: String): Units","description":"net.thauvin.erik.bitly.Units.valueOf","location":"bitly-shorten/net.thauvin.erik.bitly/-units/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): Units","net.thauvin.erik.bitly.Units.valueOf"]},{"name":"fun values(): Array","description":"net.thauvin.erik.bitly.Methods.values","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/values.html","searchKeys":["values","fun values(): Array","net.thauvin.erik.bitly.Methods.values"]},{"name":"fun values(): Array","description":"net.thauvin.erik.bitly.Units.values","location":"bitly-shorten/net.thauvin.erik.bitly/-units/values.html","searchKeys":["values","fun values(): Array","net.thauvin.erik.bitly.Units.values"]},{"name":"object Constants","description":"net.thauvin.erik.bitly.Constants","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/index.html","searchKeys":["Constants","object Constants","net.thauvin.erik.bitly.Constants"]},{"name":"object Utils","description":"net.thauvin.erik.bitly.Utils","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/index.html","searchKeys":["Utils","object Utils","net.thauvin.erik.bitly.Utils"]},{"name":"open class Bitlinks(accessToken: String)","description":"net.thauvin.erik.bitly.Bitlinks","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/index.html","searchKeys":["Bitlinks","open class Bitlinks(accessToken: String)","net.thauvin.erik.bitly.Bitlinks"]},{"name":"open class Bitly","description":"net.thauvin.erik.bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/index.html","searchKeys":["Bitly","open class Bitly","net.thauvin.erik.bitly.Bitly"]},{"name":"val archived: Boolean","description":"net.thauvin.erik.bitly.config.UpdateConfig.archived","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/archived.html","searchKeys":["archived","val archived: Boolean","net.thauvin.erik.bitly.config.UpdateConfig.archived"]},{"name":"val bitlink: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.bitlink","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html","searchKeys":["bitlink","val bitlink: String","net.thauvin.erik.bitly.config.UpdateConfig.bitlink"]},{"name":"val body: String","description":"net.thauvin.erik.bitly.CallResponse.body","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/body.html","searchKeys":["body","val body: String","net.thauvin.erik.bitly.CallResponse.body"]},{"name":"val client_id: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.client_id","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/client_id.html","searchKeys":["client_id","val client_id: String","net.thauvin.erik.bitly.config.UpdateConfig.client_id"]},{"name":"val created_at: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.created_at","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_at.html","searchKeys":["created_at","val created_at: String","net.thauvin.erik.bitly.config.UpdateConfig.created_at"]},{"name":"val created_by: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.created_by","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_by.html","searchKeys":["created_by","val created_by: String","net.thauvin.erik.bitly.config.UpdateConfig.created_by"]},{"name":"val custom_bitlinks: Array","description":"net.thauvin.erik.bitly.config.UpdateConfig.custom_bitlinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/custom_bitlinks.html","searchKeys":["custom_bitlinks","val custom_bitlinks: Array","net.thauvin.erik.bitly.config.UpdateConfig.custom_bitlinks"]},{"name":"val deepLinks: Array>","description":"net.thauvin.erik.bitly.config.CreateConfig.deepLinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/deep-links.html","searchKeys":["deepLinks","val deepLinks: Array>","net.thauvin.erik.bitly.config.CreateConfig.deepLinks"]},{"name":"val deepLinks: Array>","description":"net.thauvin.erik.bitly.config.UpdateConfig.deepLinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/deep-links.html","searchKeys":["deepLinks","val deepLinks: Array>","net.thauvin.erik.bitly.config.UpdateConfig.deepLinks"]},{"name":"val description: String","description":"net.thauvin.erik.bitly.CallResponse.description","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/description.html","searchKeys":["description","val description: String","net.thauvin.erik.bitly.CallResponse.description"]},{"name":"val domain: String","description":"net.thauvin.erik.bitly.config.CreateConfig.domain","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/domain.html","searchKeys":["domain","val domain: String","net.thauvin.erik.bitly.config.CreateConfig.domain"]},{"name":"val entries: EnumEntries","description":"net.thauvin.erik.bitly.Methods.entries","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/entries.html","searchKeys":["entries","val entries: EnumEntries","net.thauvin.erik.bitly.Methods.entries"]},{"name":"val entries: EnumEntries","description":"net.thauvin.erik.bitly.Units.entries","location":"bitly-shorten/net.thauvin.erik.bitly/-units/entries.html","searchKeys":["entries","val entries: EnumEntries","net.thauvin.erik.bitly.Units.entries"]},{"name":"val group_guid: String","description":"net.thauvin.erik.bitly.config.CreateConfig.group_guid","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/group_guid.html","searchKeys":["group_guid","val group_guid: String","net.thauvin.erik.bitly.config.CreateConfig.group_guid"]},{"name":"val id: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.id","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/id.html","searchKeys":["id","val id: String","net.thauvin.erik.bitly.config.UpdateConfig.id"]},{"name":"val isBadRequest: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isBadRequest","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-bad-request.html","searchKeys":["isBadRequest","val isBadRequest: Boolean","net.thauvin.erik.bitly.CallResponse.isBadRequest"]},{"name":"val isCreated: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isCreated","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-created.html","searchKeys":["isCreated","val isCreated: Boolean","net.thauvin.erik.bitly.CallResponse.isCreated"]},{"name":"val isExpectationFailed: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isExpectationFailed","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-expectation-failed.html","searchKeys":["isExpectationFailed","val isExpectationFailed: Boolean","net.thauvin.erik.bitly.CallResponse.isExpectationFailed"]},{"name":"val isForbidden: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isForbidden","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-forbidden.html","searchKeys":["isForbidden","val isForbidden: Boolean","net.thauvin.erik.bitly.CallResponse.isForbidden"]},{"name":"val isGone: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isGone","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-gone.html","searchKeys":["isGone","val isGone: Boolean","net.thauvin.erik.bitly.CallResponse.isGone"]},{"name":"val isInternalError: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isInternalError","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-internal-error.html","searchKeys":["isInternalError","val isInternalError: Boolean","net.thauvin.erik.bitly.CallResponse.isInternalError"]},{"name":"val isNotFound: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isNotFound","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-not-found.html","searchKeys":["isNotFound","val isNotFound: Boolean","net.thauvin.erik.bitly.CallResponse.isNotFound"]},{"name":"val isSuccessful: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isSuccessful","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-successful.html","searchKeys":["isSuccessful","val isSuccessful: Boolean","net.thauvin.erik.bitly.CallResponse.isSuccessful"]},{"name":"val isTemporarilyUnavailable: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isTemporarilyUnavailable","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-temporarily-unavailable.html","searchKeys":["isTemporarilyUnavailable","val isTemporarilyUnavailable: Boolean","net.thauvin.erik.bitly.CallResponse.isTemporarilyUnavailable"]},{"name":"val isTooManyRequests: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isTooManyRequests","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-too-many-requests.html","searchKeys":["isTooManyRequests","val isTooManyRequests: Boolean","net.thauvin.erik.bitly.CallResponse.isTooManyRequests"]},{"name":"val isUnprocessableEntity: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isUnprocessableEntity","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-unprocessable-entity.html","searchKeys":["isUnprocessableEntity","val isUnprocessableEntity: Boolean","net.thauvin.erik.bitly.CallResponse.isUnprocessableEntity"]},{"name":"val isUpgradeRequired: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isUpgradeRequired","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-upgrade-required.html","searchKeys":["isUpgradeRequired","val isUpgradeRequired: Boolean","net.thauvin.erik.bitly.CallResponse.isUpgradeRequired"]},{"name":"val link: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.link","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/link.html","searchKeys":["link","val link: String","net.thauvin.erik.bitly.config.UpdateConfig.link"]},{"name":"val logger: Logger","description":"net.thauvin.erik.bitly.Utils.logger","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/logger.html","searchKeys":["logger","val logger: Logger","net.thauvin.erik.bitly.Utils.logger"]},{"name":"val long_url: String","description":"net.thauvin.erik.bitly.config.CreateConfig.long_url","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/long_url.html","searchKeys":["long_url","val long_url: String","net.thauvin.erik.bitly.config.CreateConfig.long_url"]},{"name":"val long_url: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.long_url","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/long_url.html","searchKeys":["long_url","val long_url: String","net.thauvin.erik.bitly.config.UpdateConfig.long_url"]},{"name":"val message: String","description":"net.thauvin.erik.bitly.CallResponse.message","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/message.html","searchKeys":["message","val message: String","net.thauvin.erik.bitly.CallResponse.message"]},{"name":"val references: Map","description":"net.thauvin.erik.bitly.config.UpdateConfig.references","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/references.html","searchKeys":["references","val references: Map","net.thauvin.erik.bitly.config.UpdateConfig.references"]},{"name":"val statusCode: Int","description":"net.thauvin.erik.bitly.CallResponse.statusCode","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/status-code.html","searchKeys":["statusCode","val statusCode: Int","net.thauvin.erik.bitly.CallResponse.statusCode"]},{"name":"val tags: Array","description":"net.thauvin.erik.bitly.config.CreateConfig.tags","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/tags.html","searchKeys":["tags","val tags: Array","net.thauvin.erik.bitly.config.CreateConfig.tags"]},{"name":"val tags: Array","description":"net.thauvin.erik.bitly.config.UpdateConfig.tags","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/tags.html","searchKeys":["tags","val tags: Array","net.thauvin.erik.bitly.config.UpdateConfig.tags"]},{"name":"val title: String","description":"net.thauvin.erik.bitly.config.CreateConfig.title","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/title.html","searchKeys":["title","val title: String","net.thauvin.erik.bitly.config.CreateConfig.title"]},{"name":"val title: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.title","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/title.html","searchKeys":["title","val title: String","net.thauvin.erik.bitly.config.UpdateConfig.title"]},{"name":"val toJson: Boolean","description":"net.thauvin.erik.bitly.config.CreateConfig.toJson","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/to-json.html","searchKeys":["toJson","val toJson: Boolean","net.thauvin.erik.bitly.config.CreateConfig.toJson"]},{"name":"val toJson: Boolean","description":"net.thauvin.erik.bitly.config.UpdateConfig.toJson","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/to-json.html","searchKeys":["toJson","val toJson: Boolean","net.thauvin.erik.bitly.config.UpdateConfig.toJson"]},{"name":"var accessToken: String","description":"net.thauvin.erik.bitly.Bitly.accessToken","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/access-token.html","searchKeys":["accessToken","var accessToken: String","net.thauvin.erik.bitly.Bitly.accessToken"]},{"name":"var archived: Boolean","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.archived","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html","searchKeys":["archived","var archived: Boolean","net.thauvin.erik.bitly.config.UpdateConfig.Builder.archived"]},{"name":"var bitlink: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.bitlink","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html","searchKeys":["bitlink","var bitlink: String","net.thauvin.erik.bitly.config.UpdateConfig.Builder.bitlink"]},{"name":"var client_id: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.client_id","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client_id.html","searchKeys":["client_id","var client_id: String","net.thauvin.erik.bitly.config.UpdateConfig.Builder.client_id"]},{"name":"var created_at: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.created_at","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created_at.html","searchKeys":["created_at","var created_at: String","net.thauvin.erik.bitly.config.UpdateConfig.Builder.created_at"]},{"name":"var created_by: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.created_by","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created_by.html","searchKeys":["created_by","var created_by: String","net.thauvin.erik.bitly.config.UpdateConfig.Builder.created_by"]},{"name":"var custom_bitlinks: Array","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.custom_bitlinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom_bitlinks.html","searchKeys":["custom_bitlinks","var custom_bitlinks: Array","net.thauvin.erik.bitly.config.UpdateConfig.Builder.custom_bitlinks"]},{"name":"var deeplinks: Array>","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.deeplinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deeplinks.html","searchKeys":["deeplinks","var deeplinks: Array>","net.thauvin.erik.bitly.config.UpdateConfig.Builder.deeplinks"]},{"name":"var id: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.id","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html","searchKeys":["id","var id: String","net.thauvin.erik.bitly.config.UpdateConfig.Builder.id"]},{"name":"var lastCallResponse: CallResponse","description":"net.thauvin.erik.bitly.Bitlinks.lastCallResponse","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/last-call-response.html","searchKeys":["lastCallResponse","var lastCallResponse: CallResponse","net.thauvin.erik.bitly.Bitlinks.lastCallResponse"]},{"name":"var link: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.link","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html","searchKeys":["link","var link: String","net.thauvin.erik.bitly.config.UpdateConfig.Builder.link"]},{"name":"var long_url: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.long_url","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long_url.html","searchKeys":["long_url","var long_url: String","net.thauvin.erik.bitly.config.UpdateConfig.Builder.long_url"]},{"name":"var references: Map","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.references","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html","searchKeys":["references","var references: Map","net.thauvin.erik.bitly.config.UpdateConfig.Builder.references"]},{"name":"var tags: Array","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.tags","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html","searchKeys":["tags","var tags: Array","net.thauvin.erik.bitly.config.UpdateConfig.Builder.tags"]},{"name":"var title: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.title","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html","searchKeys":["title","var title: String","net.thauvin.erik.bitly.config.UpdateConfig.Builder.title"]},{"name":"var toJson: Boolean","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.toJson","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html","searchKeys":["toJson","var toJson: Boolean","net.thauvin.erik.bitly.config.UpdateConfig.Builder.toJson"]}] +[{"name":"DAY","description":"net.thauvin.erik.bitly.Units.DAY","location":"bitly-shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html","searchKeys":["DAY","DAY","net.thauvin.erik.bitly.Units.DAY"]},{"name":"DELETE","description":"net.thauvin.erik.bitly.Methods.DELETE","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html","searchKeys":["DELETE","DELETE","net.thauvin.erik.bitly.Methods.DELETE"]},{"name":"GET","description":"net.thauvin.erik.bitly.Methods.GET","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html","searchKeys":["GET","GET","net.thauvin.erik.bitly.Methods.GET"]},{"name":"HOUR","description":"net.thauvin.erik.bitly.Units.HOUR","location":"bitly-shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html","searchKeys":["HOUR","HOUR","net.thauvin.erik.bitly.Units.HOUR"]},{"name":"MINUTE","description":"net.thauvin.erik.bitly.Units.MINUTE","location":"bitly-shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html","searchKeys":["MINUTE","MINUTE","net.thauvin.erik.bitly.Units.MINUTE"]},{"name":"MONTH","description":"net.thauvin.erik.bitly.Units.MONTH","location":"bitly-shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html","searchKeys":["MONTH","MONTH","net.thauvin.erik.bitly.Units.MONTH"]},{"name":"PATCH","description":"net.thauvin.erik.bitly.Methods.PATCH","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html","searchKeys":["PATCH","PATCH","net.thauvin.erik.bitly.Methods.PATCH"]},{"name":"POST","description":"net.thauvin.erik.bitly.Methods.POST","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html","searchKeys":["POST","POST","net.thauvin.erik.bitly.Methods.POST"]},{"name":"WEEK","description":"net.thauvin.erik.bitly.Units.WEEK","location":"bitly-shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html","searchKeys":["WEEK","WEEK","net.thauvin.erik.bitly.Units.WEEK"]},{"name":"class CreateConfig","description":"net.thauvin.erik.bitly.config.CreateConfig","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/index.html","searchKeys":["CreateConfig","class CreateConfig","net.thauvin.erik.bitly.config.CreateConfig"]},{"name":"class UpdateConfig","description":"net.thauvin.erik.bitly.config.UpdateConfig","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/index.html","searchKeys":["UpdateConfig","class UpdateConfig","net.thauvin.erik.bitly.config.UpdateConfig"]},{"name":"const val API_BASE_URL: String","description":"net.thauvin.erik.bitly.Constants.API_BASE_URL","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html","searchKeys":["API_BASE_URL","const val API_BASE_URL: String","net.thauvin.erik.bitly.Constants.API_BASE_URL"]},{"name":"const val EMPTY: String","description":"net.thauvin.erik.bitly.Constants.EMPTY","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html","searchKeys":["EMPTY","const val EMPTY: String","net.thauvin.erik.bitly.Constants.EMPTY"]},{"name":"const val EMPTY_JSON: String","description":"net.thauvin.erik.bitly.Constants.EMPTY_JSON","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html","searchKeys":["EMPTY_JSON","const val EMPTY_JSON: String","net.thauvin.erik.bitly.Constants.EMPTY_JSON"]},{"name":"const val ENV_ACCESS_TOKEN: String","description":"net.thauvin.erik.bitly.Constants.ENV_ACCESS_TOKEN","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html","searchKeys":["ENV_ACCESS_TOKEN","const val ENV_ACCESS_TOKEN: String","net.thauvin.erik.bitly.Constants.ENV_ACCESS_TOKEN"]},{"name":"const val FALSE: String","description":"net.thauvin.erik.bitly.Constants.FALSE","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.html","searchKeys":["FALSE","const val FALSE: String","net.thauvin.erik.bitly.Constants.FALSE"]},{"name":"const val TRUE: String","description":"net.thauvin.erik.bitly.Constants.TRUE","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/-t-r-u-e.html","searchKeys":["TRUE","const val TRUE: String","net.thauvin.erik.bitly.Constants.TRUE"]},{"name":"constructor()","description":"net.thauvin.erik.bitly.Bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html","searchKeys":["Bitly","constructor()","net.thauvin.erik.bitly.Bitly.Bitly"]},{"name":"constructor(accessToken: String)","description":"net.thauvin.erik.bitly.Bitlinks.Bitlinks","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html","searchKeys":["Bitlinks","constructor(accessToken: String)","net.thauvin.erik.bitly.Bitlinks.Bitlinks"]},{"name":"constructor(accessToken: String)","description":"net.thauvin.erik.bitly.Bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html","searchKeys":["Bitly","constructor(accessToken: String)","net.thauvin.erik.bitly.Bitly.Bitly"]},{"name":"constructor(bitlink: String = Constants.EMPTY, references: Map = emptyMap(), archived: Boolean = false, tags: Array = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.Builder","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/-builder.html","searchKeys":["Builder","constructor(bitlink: String = Constants.EMPTY, references: Map = emptyMap(), archived: Boolean = false, tags: Array = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false)","net.thauvin.erik.bitly.config.UpdateConfig.Builder.Builder"]},{"name":"constructor(body: String = Constants.EMPTY_JSON, message: String = \"\", description: String = \"\", statusCode: Int = -1)","description":"net.thauvin.erik.bitly.CallResponse.CallResponse","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/-call-response.html","searchKeys":["CallResponse","constructor(body: String = Constants.EMPTY_JSON, message: String = \"\", description: String = \"\", statusCode: Int = -1)","net.thauvin.erik.bitly.CallResponse.CallResponse"]},{"name":"constructor(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.Builder","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/-builder.html","searchKeys":["Builder","constructor(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)","net.thauvin.erik.bitly.config.CreateConfig.Builder.Builder"]},{"name":"constructor(properties: Properties, key: String = Constants.ENV_ACCESS_TOKEN)","description":"net.thauvin.erik.bitly.Bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html","searchKeys":["Bitly","constructor(properties: Properties, key: String = Constants.ENV_ACCESS_TOKEN)","net.thauvin.erik.bitly.Bitly.Bitly"]},{"name":"constructor(propertiesFile: File, key: String = Constants.ENV_ACCESS_TOKEN)","description":"net.thauvin.erik.bitly.Bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html","searchKeys":["Bitly","constructor(propertiesFile: File, key: String = Constants.ENV_ACCESS_TOKEN)","net.thauvin.erik.bitly.Bitly.Bitly"]},{"name":"constructor(propertiesFilePath: Path, key: String = Constants.ENV_ACCESS_TOKEN)","description":"net.thauvin.erik.bitly.Bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/-bitly.html","searchKeys":["Bitly","constructor(propertiesFilePath: Path, key: String = Constants.ENV_ACCESS_TOKEN)","net.thauvin.erik.bitly.Bitly.Bitly"]},{"name":"data class Builder(bitlink: String = Constants.EMPTY, references: Map = emptyMap(), archived: Boolean = false, tags: Array = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html","searchKeys":["Builder","data class Builder(bitlink: String = Constants.EMPTY, references: Map = emptyMap(), archived: Boolean = false, tags: Array = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false)","net.thauvin.erik.bitly.config.UpdateConfig.Builder"]},{"name":"data class Builder(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html","searchKeys":["Builder","data class Builder(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)","net.thauvin.erik.bitly.config.CreateConfig.Builder"]},{"name":"data class CallResponse(val body: String = Constants.EMPTY_JSON, val message: String = \"\", val description: String = \"\", val statusCode: Int = -1)","description":"net.thauvin.erik.bitly.CallResponse","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/index.html","searchKeys":["CallResponse","data class CallResponse(val body: String = Constants.EMPTY_JSON, val message: String = \"\", val description: String = \"\", val statusCode: Int = -1)","net.thauvin.erik.bitly.CallResponse"]},{"name":"enum Methods : Enum ","description":"net.thauvin.erik.bitly.Methods","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/index.html","searchKeys":["Methods","enum Methods : Enum ","net.thauvin.erik.bitly.Methods"]},{"name":"enum Units : Enum ","description":"net.thauvin.erik.bitly.Units","location":"bitly-shorten/net.thauvin.erik.bitly/-units/index.html","searchKeys":["Units","enum Units : Enum ","net.thauvin.erik.bitly.Units"]},{"name":"fun Logger.isSevereLoggable(): Boolean","description":"net.thauvin.erik.bitly.Utils.isSevereLoggable","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/is-severe-loggable.html","searchKeys":["isSevereLoggable","fun Logger.isSevereLoggable(): Boolean","net.thauvin.erik.bitly.Utils.isSevereLoggable"]},{"name":"fun String.isValidUrl(): Boolean","description":"net.thauvin.erik.bitly.Utils.isValidUrl","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/is-valid-url.html","searchKeys":["isValidUrl","fun String.isValidUrl(): Boolean","net.thauvin.erik.bitly.Utils.isValidUrl"]},{"name":"fun String.removeHttp(): String","description":"net.thauvin.erik.bitly.Utils.removeHttp","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/remove-http.html","searchKeys":["removeHttp","fun String.removeHttp(): String","net.thauvin.erik.bitly.Utils.removeHttp"]},{"name":"fun String.toEndPoint(): String","description":"net.thauvin.erik.bitly.Utils.toEndPoint","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/to-end-point.html","searchKeys":["toEndPoint","fun String.toEndPoint(): String","net.thauvin.erik.bitly.Utils.toEndPoint"]},{"name":"fun archived(archived: Boolean): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.archived","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html","searchKeys":["archived","fun archived(archived: Boolean): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.archived"]},{"name":"fun bitlink(bitlink: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.bitlink","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html","searchKeys":["bitlink","fun bitlink(bitlink: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.bitlink"]},{"name":"fun bitlinks(): Bitlinks","description":"net.thauvin.erik.bitly.Bitly.bitlinks","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html","searchKeys":["bitlinks","fun bitlinks(): Bitlinks","net.thauvin.erik.bitly.Bitly.bitlinks"]},{"name":"fun build(): CreateConfig","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.build","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/build.html","searchKeys":["build","fun build(): CreateConfig","net.thauvin.erik.bitly.config.CreateConfig.Builder.build"]},{"name":"fun build(): UpdateConfig","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.build","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html","searchKeys":["build","fun build(): UpdateConfig","net.thauvin.erik.bitly.config.UpdateConfig.Builder.build"]},{"name":"fun call(accessToken: String, endPoint: String, params: Map = emptyMap(), method: Methods = Methods.POST): CallResponse","description":"net.thauvin.erik.bitly.Utils.call","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/call.html","searchKeys":["call","fun call(accessToken: String, endPoint: String, params: Map = emptyMap(), method: Methods = Methods.POST): CallResponse","net.thauvin.erik.bitly.Utils.call"]},{"name":"fun call(endPoint: String, params: Map = emptyMap(), method: Methods = Methods.POST): CallResponse","description":"net.thauvin.erik.bitly.Bitly.call","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/call.html","searchKeys":["call","fun call(endPoint: String, params: Map = emptyMap(), method: Methods = Methods.POST): CallResponse","net.thauvin.erik.bitly.Bitly.call"]},{"name":"fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, size: Int = 50, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.clicks","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html","searchKeys":["clicks","fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, size: Int = 50, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.clicks"]},{"name":"fun clientId(clientId: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.clientId","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client-id.html","searchKeys":["clientId","fun clientId(clientId: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.clientId"]},{"name":"fun create(config: CreateConfig): String","description":"net.thauvin.erik.bitly.Bitlinks.create","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/create.html","searchKeys":["create","fun create(config: CreateConfig): String","net.thauvin.erik.bitly.Bitlinks.create"]},{"name":"fun create(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.create","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/create.html","searchKeys":["create","fun create(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: Array> = emptyArray(), long_url: String, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.create"]},{"name":"fun createdAt(createdAt: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.createdAt","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html","searchKeys":["createdAt","fun createdAt(createdAt: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.createdAt"]},{"name":"fun createdBy(createdBy: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.createdBy","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html","searchKeys":["createdBy","fun createdBy(createdBy: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.createdBy"]},{"name":"fun customBitlinks(customBitlinks: Array): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.customBitlinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html","searchKeys":["customBitlinks","fun customBitlinks(customBitlinks: Array): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.customBitlinks"]},{"name":"fun deepLinks(deepLinks: Array>): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.deepLinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html","searchKeys":["deepLinks","fun deepLinks(deepLinks: Array>): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.deepLinks"]},{"name":"fun deeplinks(deeplinks: Array>): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.deeplinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html","searchKeys":["deeplinks","fun deeplinks(deeplinks: Array>): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.deeplinks"]},{"name":"fun domain(domain: String): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.domain","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.html","searchKeys":["domain","fun domain(domain: String): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.domain"]},{"name":"fun expand(bitlink_id: String, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.expand","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/expand.html","searchKeys":["expand","fun expand(bitlink_id: String, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.expand"]},{"name":"fun groupGuid(group_guid: String): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.groupGuid","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html","searchKeys":["groupGuid","fun groupGuid(group_guid: String): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.groupGuid"]},{"name":"fun id(id: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.id","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html","searchKeys":["id","fun id(id: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.id"]},{"name":"fun link(link: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.link","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html","searchKeys":["link","fun link(link: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.link"]},{"name":"fun longUrl(longUrl: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.longUrl","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html","searchKeys":["longUrl","fun longUrl(longUrl: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.longUrl"]},{"name":"fun longUrl(long_url: String): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.longUrl","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long-url.html","searchKeys":["longUrl","fun longUrl(long_url: String): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.longUrl"]},{"name":"fun references(references: Map): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.references","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html","searchKeys":["references","fun references(references: Map): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.references"]},{"name":"fun shorten(long_url: String, group_guid: String = Constants.EMPTY, domain: String = Constants.EMPTY, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.shorten","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html","searchKeys":["shorten","fun shorten(long_url: String, group_guid: String = Constants.EMPTY, domain: String = Constants.EMPTY, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.shorten"]},{"name":"fun tags(tags: Array): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.tags","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.html","searchKeys":["tags","fun tags(tags: Array): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.tags"]},{"name":"fun tags(tags: Array): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.tags","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html","searchKeys":["tags","fun tags(tags: Array): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.tags"]},{"name":"fun title(title: String): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.title","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.html","searchKeys":["title","fun title(title: String): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.title"]},{"name":"fun title(title: String): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.title","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html","searchKeys":["title","fun title(title: String): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.title"]},{"name":"fun toJson(toJson: Boolean): CreateConfig.Builder","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.toJson","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html","searchKeys":["toJson","fun toJson(toJson: Boolean): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.toJson"]},{"name":"fun toJson(toJson: Boolean): UpdateConfig.Builder","description":"net.thauvin.erik.bitly.config.UpdateConfig.Builder.toJson","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html","searchKeys":["toJson","fun toJson(toJson: Boolean): UpdateConfig.Builder","net.thauvin.erik.bitly.config.UpdateConfig.Builder.toJson"]},{"name":"fun update(bitlink: String, references: Map = emptyMap(), archived: Boolean = false, tags: Array = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.update","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/update.html","searchKeys":["update","fun update(bitlink: String, references: Map = emptyMap(), archived: Boolean = false, tags: Array = emptyArray(), created_at: String = Constants.EMPTY, title: String = Constants.EMPTY, deeplinks: Array> = emptyArray(), created_by: String = Constants.EMPTY, long_url: String = Constants.EMPTY, client_id: String = Constants.EMPTY, custom_bitlinks: Array = emptyArray(), link: String = Constants.EMPTY, id: String = Constants.EMPTY, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.update"]},{"name":"fun update(config: UpdateConfig): String","description":"net.thauvin.erik.bitly.Bitlinks.update","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/update.html","searchKeys":["update","fun update(config: UpdateConfig): String","net.thauvin.erik.bitly.Bitlinks.update"]},{"name":"fun valueOf(value: String): Methods","description":"net.thauvin.erik.bitly.Methods.valueOf","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): Methods","net.thauvin.erik.bitly.Methods.valueOf"]},{"name":"fun valueOf(value: String): Units","description":"net.thauvin.erik.bitly.Units.valueOf","location":"bitly-shorten/net.thauvin.erik.bitly/-units/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): Units","net.thauvin.erik.bitly.Units.valueOf"]},{"name":"fun values(): Array","description":"net.thauvin.erik.bitly.Methods.values","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/values.html","searchKeys":["values","fun values(): Array","net.thauvin.erik.bitly.Methods.values"]},{"name":"fun values(): Array","description":"net.thauvin.erik.bitly.Units.values","location":"bitly-shorten/net.thauvin.erik.bitly/-units/values.html","searchKeys":["values","fun values(): Array","net.thauvin.erik.bitly.Units.values"]},{"name":"object Constants","description":"net.thauvin.erik.bitly.Constants","location":"bitly-shorten/net.thauvin.erik.bitly/-constants/index.html","searchKeys":["Constants","object Constants","net.thauvin.erik.bitly.Constants"]},{"name":"object Utils","description":"net.thauvin.erik.bitly.Utils","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/index.html","searchKeys":["Utils","object Utils","net.thauvin.erik.bitly.Utils"]},{"name":"open class Bitlinks(accessToken: String)","description":"net.thauvin.erik.bitly.Bitlinks","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/index.html","searchKeys":["Bitlinks","open class Bitlinks(accessToken: String)","net.thauvin.erik.bitly.Bitlinks"]},{"name":"open class Bitly","description":"net.thauvin.erik.bitly.Bitly","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/index.html","searchKeys":["Bitly","open class Bitly","net.thauvin.erik.bitly.Bitly"]},{"name":"val archived: Boolean","description":"net.thauvin.erik.bitly.config.UpdateConfig.archived","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/archived.html","searchKeys":["archived","val archived: Boolean","net.thauvin.erik.bitly.config.UpdateConfig.archived"]},{"name":"val bitlink: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.bitlink","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html","searchKeys":["bitlink","val bitlink: String","net.thauvin.erik.bitly.config.UpdateConfig.bitlink"]},{"name":"val body: String","description":"net.thauvin.erik.bitly.CallResponse.body","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/body.html","searchKeys":["body","val body: String","net.thauvin.erik.bitly.CallResponse.body"]},{"name":"val client_id: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.client_id","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/client_id.html","searchKeys":["client_id","val client_id: String","net.thauvin.erik.bitly.config.UpdateConfig.client_id"]},{"name":"val created_at: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.created_at","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_at.html","searchKeys":["created_at","val created_at: String","net.thauvin.erik.bitly.config.UpdateConfig.created_at"]},{"name":"val created_by: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.created_by","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/created_by.html","searchKeys":["created_by","val created_by: String","net.thauvin.erik.bitly.config.UpdateConfig.created_by"]},{"name":"val custom_bitlinks: Array","description":"net.thauvin.erik.bitly.config.UpdateConfig.custom_bitlinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/custom_bitlinks.html","searchKeys":["custom_bitlinks","val custom_bitlinks: Array","net.thauvin.erik.bitly.config.UpdateConfig.custom_bitlinks"]},{"name":"val deepLinks: Array>","description":"net.thauvin.erik.bitly.config.CreateConfig.deepLinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/deep-links.html","searchKeys":["deepLinks","val deepLinks: Array>","net.thauvin.erik.bitly.config.CreateConfig.deepLinks"]},{"name":"val deepLinks: Array>","description":"net.thauvin.erik.bitly.config.UpdateConfig.deepLinks","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/deep-links.html","searchKeys":["deepLinks","val deepLinks: Array>","net.thauvin.erik.bitly.config.UpdateConfig.deepLinks"]},{"name":"val description: String","description":"net.thauvin.erik.bitly.CallResponse.description","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/description.html","searchKeys":["description","val description: String","net.thauvin.erik.bitly.CallResponse.description"]},{"name":"val domain: String","description":"net.thauvin.erik.bitly.config.CreateConfig.domain","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/domain.html","searchKeys":["domain","val domain: String","net.thauvin.erik.bitly.config.CreateConfig.domain"]},{"name":"val entries: EnumEntries","description":"net.thauvin.erik.bitly.Methods.entries","location":"bitly-shorten/net.thauvin.erik.bitly/-methods/entries.html","searchKeys":["entries","val entries: EnumEntries","net.thauvin.erik.bitly.Methods.entries"]},{"name":"val entries: EnumEntries","description":"net.thauvin.erik.bitly.Units.entries","location":"bitly-shorten/net.thauvin.erik.bitly/-units/entries.html","searchKeys":["entries","val entries: EnumEntries","net.thauvin.erik.bitly.Units.entries"]},{"name":"val group_guid: String","description":"net.thauvin.erik.bitly.config.CreateConfig.group_guid","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/group_guid.html","searchKeys":["group_guid","val group_guid: String","net.thauvin.erik.bitly.config.CreateConfig.group_guid"]},{"name":"val id: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.id","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/id.html","searchKeys":["id","val id: String","net.thauvin.erik.bitly.config.UpdateConfig.id"]},{"name":"val isBadRequest: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isBadRequest","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-bad-request.html","searchKeys":["isBadRequest","val isBadRequest: Boolean","net.thauvin.erik.bitly.CallResponse.isBadRequest"]},{"name":"val isCreated: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isCreated","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-created.html","searchKeys":["isCreated","val isCreated: Boolean","net.thauvin.erik.bitly.CallResponse.isCreated"]},{"name":"val isExpectationFailed: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isExpectationFailed","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-expectation-failed.html","searchKeys":["isExpectationFailed","val isExpectationFailed: Boolean","net.thauvin.erik.bitly.CallResponse.isExpectationFailed"]},{"name":"val isForbidden: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isForbidden","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-forbidden.html","searchKeys":["isForbidden","val isForbidden: Boolean","net.thauvin.erik.bitly.CallResponse.isForbidden"]},{"name":"val isGone: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isGone","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-gone.html","searchKeys":["isGone","val isGone: Boolean","net.thauvin.erik.bitly.CallResponse.isGone"]},{"name":"val isInternalError: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isInternalError","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-internal-error.html","searchKeys":["isInternalError","val isInternalError: Boolean","net.thauvin.erik.bitly.CallResponse.isInternalError"]},{"name":"val isNotFound: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isNotFound","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-not-found.html","searchKeys":["isNotFound","val isNotFound: Boolean","net.thauvin.erik.bitly.CallResponse.isNotFound"]},{"name":"val isSuccessful: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isSuccessful","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-successful.html","searchKeys":["isSuccessful","val isSuccessful: Boolean","net.thauvin.erik.bitly.CallResponse.isSuccessful"]},{"name":"val isTemporarilyUnavailable: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isTemporarilyUnavailable","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-temporarily-unavailable.html","searchKeys":["isTemporarilyUnavailable","val isTemporarilyUnavailable: Boolean","net.thauvin.erik.bitly.CallResponse.isTemporarilyUnavailable"]},{"name":"val isTooManyRequests: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isTooManyRequests","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-too-many-requests.html","searchKeys":["isTooManyRequests","val isTooManyRequests: Boolean","net.thauvin.erik.bitly.CallResponse.isTooManyRequests"]},{"name":"val isUnprocessableEntity: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isUnprocessableEntity","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-unprocessable-entity.html","searchKeys":["isUnprocessableEntity","val isUnprocessableEntity: Boolean","net.thauvin.erik.bitly.CallResponse.isUnprocessableEntity"]},{"name":"val isUpgradeRequired: Boolean","description":"net.thauvin.erik.bitly.CallResponse.isUpgradeRequired","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/is-upgrade-required.html","searchKeys":["isUpgradeRequired","val isUpgradeRequired: Boolean","net.thauvin.erik.bitly.CallResponse.isUpgradeRequired"]},{"name":"val link: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.link","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/link.html","searchKeys":["link","val link: String","net.thauvin.erik.bitly.config.UpdateConfig.link"]},{"name":"val logger: Logger","description":"net.thauvin.erik.bitly.Utils.logger","location":"bitly-shorten/net.thauvin.erik.bitly/-utils/logger.html","searchKeys":["logger","val logger: Logger","net.thauvin.erik.bitly.Utils.logger"]},{"name":"val long_url: String","description":"net.thauvin.erik.bitly.config.CreateConfig.long_url","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/long_url.html","searchKeys":["long_url","val long_url: String","net.thauvin.erik.bitly.config.CreateConfig.long_url"]},{"name":"val long_url: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.long_url","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/long_url.html","searchKeys":["long_url","val long_url: String","net.thauvin.erik.bitly.config.UpdateConfig.long_url"]},{"name":"val message: String","description":"net.thauvin.erik.bitly.CallResponse.message","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/message.html","searchKeys":["message","val message: String","net.thauvin.erik.bitly.CallResponse.message"]},{"name":"val references: Map","description":"net.thauvin.erik.bitly.config.UpdateConfig.references","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/references.html","searchKeys":["references","val references: Map","net.thauvin.erik.bitly.config.UpdateConfig.references"]},{"name":"val statusCode: Int","description":"net.thauvin.erik.bitly.CallResponse.statusCode","location":"bitly-shorten/net.thauvin.erik.bitly/-call-response/status-code.html","searchKeys":["statusCode","val statusCode: Int","net.thauvin.erik.bitly.CallResponse.statusCode"]},{"name":"val tags: Array","description":"net.thauvin.erik.bitly.config.CreateConfig.tags","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/tags.html","searchKeys":["tags","val tags: Array","net.thauvin.erik.bitly.config.CreateConfig.tags"]},{"name":"val tags: Array","description":"net.thauvin.erik.bitly.config.UpdateConfig.tags","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/tags.html","searchKeys":["tags","val tags: Array","net.thauvin.erik.bitly.config.UpdateConfig.tags"]},{"name":"val title: String","description":"net.thauvin.erik.bitly.config.CreateConfig.title","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/title.html","searchKeys":["title","val title: String","net.thauvin.erik.bitly.config.CreateConfig.title"]},{"name":"val title: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.title","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/title.html","searchKeys":["title","val title: String","net.thauvin.erik.bitly.config.UpdateConfig.title"]},{"name":"val toJson: Boolean","description":"net.thauvin.erik.bitly.config.CreateConfig.toJson","location":"bitly-shorten/net.thauvin.erik.bitly.config/-create-config/to-json.html","searchKeys":["toJson","val toJson: Boolean","net.thauvin.erik.bitly.config.CreateConfig.toJson"]},{"name":"val toJson: Boolean","description":"net.thauvin.erik.bitly.config.UpdateConfig.toJson","location":"bitly-shorten/net.thauvin.erik.bitly.config/-update-config/to-json.html","searchKeys":["toJson","val toJson: Boolean","net.thauvin.erik.bitly.config.UpdateConfig.toJson"]},{"name":"var accessToken: String","description":"net.thauvin.erik.bitly.Bitly.accessToken","location":"bitly-shorten/net.thauvin.erik.bitly/-bitly/access-token.html","searchKeys":["accessToken","var accessToken: String","net.thauvin.erik.bitly.Bitly.accessToken"]},{"name":"var lastCallResponse: CallResponse","description":"net.thauvin.erik.bitly.Bitlinks.lastCallResponse","location":"bitly-shorten/net.thauvin.erik.bitly/-bitlinks/last-call-response.html","searchKeys":["lastCallResponse","var lastCallResponse: CallResponse","net.thauvin.erik.bitly.Bitlinks.lastCallResponse"]}] diff --git a/docs/styles/jetbrains-mono.css b/docs/styles/jetbrains-mono.css deleted file mode 100644 index 9a0f06f..0000000 --- a/docs/styles/jetbrains-mono.css +++ /dev/null @@ -1,17 +0,0 @@ -@font-face{ - font-family: 'JetBrains Mono'; - src: url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/fonts/web/JetBrainsMono-Regular.eot') format('embedded-opentype'), - url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/fonts/webfonts/JetBrainsMono-Regular.woff2') format('woff2'), - url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/fonts/ttf/JetBrainsMono-Regular.ttf') format('truetype'); - font-weight: normal; - font-style: normal; -} - -@font-face{ - font-family: 'JetBrains Mono'; - src: url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/fonts/web/JetBrainsMono-Bold.eot') format('embedded-opentype'), - url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/fonts/webfonts/JetBrainsMono-Bold.woff2') format('woff2'), - url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/fonts/ttf/JetBrainsMono-Bold.ttf') format('truetype'); - font-weight: bold; - font-style: bold; -} \ No newline at end of file diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index efb0dbf..b746907 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -17,7 +17,7 @@ repositories { } dependencies { - implementation("net.thauvin.erik:bitly-shorten:0.9.4-SNAPSHOT") + implementation("net.thauvin.erik:bitly-shorten:1.0.0") implementation("org.json:json:20230618") } diff --git a/pom.xml b/pom.xml index bc98a9a..00e64de 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ 4.0.0 net.thauvin.erik bitly-shorten - 0.9.4-SNAPSHOT + 1.0.0 bitly-shorten A simple implementation of the Bitly link shortening API v4 https://github.com/ethauvin/bitly-shorten diff --git a/settings.gradle.kts b/settings.gradle.kts index 4dd24aa..d00c90a 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("com.gradle.enterprise").version("3.6.3") + id("com.gradle.enterprise").version("3.15") } gradleEnterprise { diff --git a/version.properties b/version.properties index 68e2644..a873577 100644 --- a/version.properties +++ b/version.properties @@ -1,8 +1,8 @@ #Generated by the Semver Plugin for Gradle #Sun May 02 22:02:16 PDT 2021 version.buildmeta= -version.major=0 -version.minor=9 -version.patch=4 -version.prerelease=SNAPSHOT -version.semver=0.9.4-SNAPSHOT +version.major=1 +version.minor=0 +version.patch=0 +version.prerelease= +version.semver=1.0.0