diff --git a/.circleci/config.yml b/.circleci/config.yml index e6c4f38..c781fdc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,55 +1,62 @@ -version: 2 +version: 2.1 + +orbs: + sdkman: joshdholtz/sdkman@0.2.0 + defaults: &defaults working_directory: ~/repo environment: JVM_OPTS: -Xmx3200m TERM: dumb - CI: true + CI_NAME: "CircleCI" -defaults_gradle: &defaults_gradle - steps: - - checkout - - restore_cache: - keys: - - gradle-dependencies-{{ checksum "build.gradle.kts" }} - # fallback to using the latest cache if no exact match is found - - gradle-dependencies- - - run: - name: Gradle Dependencies - command: ./gradlew dependencies - - save_cache: - paths: ~/.m2 - key: gradle-dependencies-{{ checksum "build.gradle.kts" }} - - run: - name: Run All Checks - command: ./gradlew check - - store_artifacts: - path: build/reports/ - destination: reports - - store_test_results: - path: build/reports/ +commands: + build_and_test: + parameters: + reports-dir: + type: string + default: "build/reports/test_results" + steps: + - checkout + - sdkman/setup-sdkman + - sdkman/sdkman-install: + candidate: kotlin + version: 2.1.10 + - run: + name: Download dependencies + command: ./bld download + - run: + name: Compile source + command: ./bld compile + - run: + name: Run tests + command: ./bld jacoco -reports-dir=<< parameters.reports-dir >> + - store_test_results: + path: << parameters.reports-dir >> + - store_artifacts: + path: build/reports/jacoco/test/html jobs: - build_gradle_jdk18: + bld_jdk17: <<: *defaults docker: - - image: cimg/openjdk:18.0 + - image: cimg/openjdk:17.0 - <<: *defaults_gradle + steps: + - build_and_test - build_gradle_jdk11: + bld_jdk21: <<: *defaults docker: - - image: cimg/openjdk:11.0 + - image: cimg/openjdk:21.0 - <<: *defaults_gradle + steps: + - build_and_test workflows: - version: 2 - gradle: - jobs: - - build_gradle_jdk11 - - build_gradle_jdk18 - + bld: + jobs: + - bld_jdk17 + - bld_jdk21 diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml new file mode 100644 index 0000000..4ee117f --- /dev/null +++ b/.github/workflows/bld.yml @@ -0,0 +1,72 @@ +name: bld-ci + +on: [ push, pull_request, workflow_dispatch ] + +env: + BITLY_ACCESS_TOKEN: ${{ secrets.BITLY_ACCESS_TOKEN }} + COVERAGE_JDK: "21" + COVERAGE_KOTLIN: "2.0.21" + +jobs: + build-bld-project: + strategy: + matrix: + java-version: [ 17, 21, 24 ] + kotlin-version: [ 1.9.25, 2.0.21, 2.1.20 ] + os: [ ubuntu-latest, windows-latest, macos-latest ] + + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout source repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Set up JDK ${{ matrix.java-version }} with Kotlin ${{ matrix.kotlin-version }} + uses: actions/setup-java@v4 + with: + distribution: "zulu" + java-version: ${{ matrix.java-version }} + + - name: Download dependencies [bld example] + working-directory: examples/bld + run: ./bld download + + - name: Compile and run examples [bld examples] + working-directory: examples/bld + run: | + ./bld compile + ./bld run --args='https://erik.thauvin.net/ https://bit.ly/2PsNMAA' + ./bld run-retrieve + ./bld run-java --args='https://erik.thauvin.net/ https://bit.ly/2PsNMAA' + + - name: Run examples [gradle examples] + working-directory: examples/gradle + if: matrix.java-version != '24' + run: | + ./gradlew run --args='https://erik.thauvin.net/ https://bit.ly/2PsNMAA' + ./gradlew runRetrieve + ./gradlew runJava --args='https://erik.thauvin.net/ https://bit.ly/2PsNMAA' + + - name: Download dependencies + run: ./bld download + + - name: Compile source + run: ./bld compile + + - name: Run tests + run: ./bld jacoco + + - name: Remove pom.xml + if: success() && matrix.java-version == env.COVERAGE_JDK && matrix.kotlin-version == env.COVERAGE_KOTLIN + && matrix.os == 'ubuntu-latest' + run: rm -rf pom.xml + + - name: SonarCloud Scan + uses: sonarsource/sonarcloud-github-action@master + if: success() && matrix.java-version == env.COVERAGE_JDK && matrix.kotlin-version == env.COVERAGE_KOTLIN + && matrix.os == 'ubuntu-latest' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml deleted file mode 100644 index e4e5126..0000000 --- a/.github/workflows/gradle.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: gradle-ci - -on: [ push, pull_request, workflow_dispatch ] - -jobs: - build: - runs-on: ubuntu-latest - - env: - GRADLE_OPTS: "-Dorg.gradle.jvmargs=-XX:MaxMetaspaceSize=512m" - SONAR_JDK: "17" - - strategy: - matrix: - java-version: [ 11, 17, 20 ] - - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Set up JDK ${{ matrix.java-version }} - uses: actions/setup-java@v3 - with: - distribution: 'zulu' - java-version: ${{ matrix.java-version }} - - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - - name: Cache SonarCloud packages - if: matrix.java-version == env.SONAR_JDK - uses: actions/cache@v3 - with: - path: ~/.sonar/cache - key: ${{ runner.os }}-sonar - restore-keys: ${{ runner.os }}-sonar - - - name: Test with Gradle - uses: gradle/gradle-build-action@v2 - env: - BITLY_ACCESS_TOKEN: ${{ secrets.BITLY_ACCESS_TOKEN }} - with: - arguments: build check --stacktrace --scan - - - name: SonarCloud - if: success() && matrix.java-version == env.SONAR_JDK - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: ./gradlew sonar --info diff --git a/.gitignore b/.gitignore index 0742f86..1808834 100644 --- a/.gitignore +++ b/.gitignore @@ -1,84 +1,61 @@ -!.vscode/extensions.json -!.vscode/launch.json -!.vscode/settings.json -!.vscode/tasks.json -*.class -*.code-workspace -*.ctxt -*.iws -*.log -*.nar -*.rar -*.sublime-* -*.tar.gz -*.zip -.DS_Store -.classpath .gradle -.history -.kobalt -.mtj.tmp/ -.mvn/timing.properties -.mvn/wrapper/maven-wrapper.jar -.nb-gradle -.project -.scannerwork -.settings -.vscode/* -/**/.idea/$CACHE_FILE$ -/**/.idea/$PRODUCT_WORKSPACE_FILE$ -/**/.idea/**/caches/build_file_checksums.ser -/**/.idea/**/contentModel.xml -/**/.idea/**/dataSources.ids -/**/.idea/**/dataSources.local.xml -/**/.idea/**/dataSources/ -/**/.idea/**/dbnavigator.xml -/**/.idea/**/dictionaries -/**/.idea/**/dynamic.xml -/**/.idea/**/gradle.xml -/**/.idea/**/httpRequests -/**/.idea/**/libraries -/**/.idea/**/mongoSettings.xml -/**/.idea/**/replstate.xml -/**/.idea/**/shelf -/**/.idea/**/shelf/ -/**/.idea/**/sqlDataSources.xml -/**/.idea/**/tasks.xml -/**/.idea/**/uiDesigner.xml -/**/.idea/**/usage.statistics.xml -/**/.idea/**/workspace.xml -/**/.idea/sonarlint* -/**/.idea_modules/ -Thumbs.db -__pycache__ +.DS_Store +build +lib/bld/** +!lib/bld/bld-wrapper.jar +!lib/bld/bld-wrapper.properties +lib/compile/ +lib/runtime/ +lib/standalone/ +lib/test/ + +# IDEA ignores + +# User-specific +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin atlassian-ide-plugin.xml -bin/ -build/ -cmake-build-*/ -com_crashlytics_export_strings.xml -crashlytics-build.properties -crashlytics.properties -dependency-reduced-pom.xml -deploy/ -dist/ -ehthumbs.db -fabric.properties -gen/ -hs_err_pid* -kobaltBuild -kobaltw*-test -lib/kotlin* -libs/ + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Editor-based Rest Client +.idea/httpRequests + +bin +deploy +target local.properties -out/ -pom.xml.asc -pom.xml.next -pom.xml.releaseBackup -pom.xml.tag -pom.xml.versionsBackup -proguard-project.txt -project.properties -release.properties -target/ -test-output -venv + diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1601b0b..10b9b0f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,31 +1,24 @@ -image: gradle:8-jdk11 +image: fedora:latest variables: - GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs=-XX:MaxMetaspaceSize=512m" - -before_script: - - export GRADLE_USER_HOME=`pwd`/.gradle + CI_NAME: "GitLab CI" stages: - - build - test -build: - stage: build - script: gradle --build-cache assemble - cache: - key: "$CI_COMMIT_REF_NAME" - policy: push - paths: - - build - - .gradle +before_script: + - dnf -qy update && dnf -y install zip + - curl -s "https://get.sdkman.io" | bash + - echo sdkman_auto_answer=true > $HOME/.sdkman/etc/config + - echo sdkman_auto_selfupdate=true >> $HOME/.sdkman/etc/config + - source "$HOME/.sdkman/bin/sdkman-init.sh" + - sdk install java + - sdk install kotlin + - source "$HOME/.sdkman/bin/sdkman-init.sh" test: stage: test - script: gradle check - cache: - key: "$CI_COMMIT_REF_NAME" - policy: pull - paths: - - build - - .gradle + script: + - ./bld download + - ./bld compile + - ./bld test diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 73f69e0..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml -# Editor-based HTTP Client requests -/httpRequests/ diff --git a/.idea/app.iml b/.idea/app.iml new file mode 100644 index 0000000..2c1fe21 --- /dev/null +++ b/.idea/app.iml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/bld.iml b/.idea/bld.iml new file mode 100644 index 0000000..e63e11e --- /dev/null +++ b/.idea/bld.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/bld.xml similarity index 54% rename from .idea/encodings.xml rename to .idea/bld.xml index 97626ba..6600cee 100644 --- a/.idea/encodings.xml +++ b/.idea/bld.xml @@ -1,6 +1,6 @@ - - + + \ No newline at end of file diff --git a/.idea/checkstyle-idea.xml b/.idea/checkstyle-idea.xml deleted file mode 100644 index 21a0f73..0000000 --- a/.idea/checkstyle-idea.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml deleted file mode 100644 index 15cfaa5..0000000 --- a/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,308 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index 23f4bb5..0000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/copyright/Erik_s_Copyright_Notice.xml b/.idea/copyright/BSD_3.xml similarity index 96% rename from .idea/copyright/Erik_s_Copyright_Notice.xml rename to .idea/copyright/BSD_3.xml index 3889459..dcac8a6 100644 --- a/.idea/copyright/Erik_s_Copyright_Notice.xml +++ b/.idea/copyright/BSD_3.xml @@ -1,6 +1,6 @@ \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml index 1419e40..3203074 100644 --- a/.idea/copyright/profiles_settings.xml +++ b/.idea/copyright/profiles_settings.xml @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml index 8ff795e..94f28ea 100644 --- a/.idea/inspectionProfiles/Project_Default.xml +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -1,53 +1,9 @@ \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index dc2dcae..0000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/libraries-with-intellij-classes.xml b/.idea/libraries-with-intellij-classes.xml deleted file mode 100644 index 9fa3156..0000000 --- a/.idea/libraries-with-intellij-classes.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/libraries/bld.xml b/.idea/libraries/bld.xml new file mode 100644 index 0000000..c11c5e9 --- /dev/null +++ b/.idea/libraries/bld.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/compile.xml b/.idea/libraries/compile.xml new file mode 100644 index 0000000..99cc0c0 --- /dev/null +++ b/.idea/libraries/compile.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/runtime.xml b/.idea/libraries/runtime.xml new file mode 100644 index 0000000..d4069f2 --- /dev/null +++ b/.idea/libraries/runtime.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/test.xml b/.idea/libraries/test.xml new file mode 100644 index 0000000..57ed5ef --- /dev/null +++ b/.idea/libraries/test.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index fc3b4bf..f40d83c 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,26 +1,14 @@ + - - \ No newline at end of file + diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..25946a1 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/.idea/runConfigurations/Run Tests.xml b/.idea/runConfigurations/Run Tests.xml new file mode 100644 index 0000000..64dfc8e --- /dev/null +++ b/.idea/runConfigurations/Run Tests.xml @@ -0,0 +1,9 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 94a25f7..35eb1dd 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index db05a47..dc6ac17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2.0.0](https://github.com/ethauvin/bitly-shorten/tree/1.0.0) (2024-05-23) + +[Full Changelog](https://github.com/ethauvin/bitly-shorten/compare/1.0.1...1.0.0) + +**Implemented enhancements:** + +- Implement DSL for deeplinks [\#16](https://github.com/ethauvin/bitly-shorten/issues/16) +- Implement custom bitlink update [\#15](https://github.com/ethauvin/bitly-shorten/issues/15) +- Update functions to match the bit.ly API [\#14](https://github.com/ethauvin/bitly-shorten/issues/14) + +## [1.0.1](https://github.com/ethauvin/bitly-shorten/tree/1.0.1) (2023-11-26) + +[Full Changelog](https://github.com/ethauvin/bitly-shorten/compare/1.0.0...1.0.1) + ## [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) diff --git a/LICENSE.txt b/LICENSE.txt index 77cf63c..75e61da 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright 2020-2023 Erik C. Thauvin (erik@thauvin.net) +Copyright 2020-2025 Erik C. Thauvin (erik@thauvin.net) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/README.md b/README.md index 32c50e5..02d7aae 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ [![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](https://opensource.org/licenses/BSD-3-Clause) -[![Kotlin](https://img.shields.io/badge/kotlin-1.9.10-7f52ff)](https://kotlinlang.org/) -[![Nexus Snapshot](https://img.shields.io/nexus/s/net.thauvin.erik/bitly-shorten?label=snapshot&server=https%3A%2F%2Foss.sonatype.org%2F)](https://oss.sonatype.org/content/repositories/snapshots/net/thauvin/erik/bitly-shorten/) +[![Kotlin](https://img.shields.io/badge/kotlin-2.1.20-7f52ff)](https://kotlinlang.org/) +[![bld](https://img.shields.io/badge/2.2.1-FA9052?label=bld&labelColor=2392FF)](https://rife2.com/bld) [![Release](https://img.shields.io/github/release/ethauvin/bitly-shorten.svg)](https://github.com/ethauvin/bitly-shorten/releases/latest) [![Maven Central](https://img.shields.io/maven-central/v/net.thauvin.erik/bitly-shorten.svg?color=blue)](https://central.sonatype.com/artifact/net.thauvin.erik/bitly-shorten) +[![Nexus Snapshot](https://img.shields.io/nexus/s/net.thauvin.erik/bitly-shorten?label=snapshot&server=https%3A%2F%2Foss.sonatype.org%2F)](https://oss.sonatype.org/content/repositories/snapshots/net/thauvin/erik/bitly-shorten/) + [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=ethauvin_bitly-shorten&metric=alert_status)](https://sonarcloud.io/dashboard?id=ethauvin_bitly-shorten) -[![GitHub CI](https://github.com/ethauvin/bitly-shorten/actions/workflows/gradle.yml/badge.svg)](https://github.com/ethauvin/bitly-shorten/actions/workflows/gradle.yml) +[![GitHub CI](https://github.com/ethauvin/bitly-shorten/actions/workflows/bld.yml/badge.svg)](https://github.com/ethauvin/bitly-shorten/actions/workflows/bld.yml) [![CircleCI](https://circleci.com/gh/ethauvin/bitly-shorten/tree/master.svg?style=shield)](https://circleci.com/gh/ethauvin/bitly-shorten/tree/master) # [Bitly](https://dev.bitly.com/v4/) Shortener for Kotlin, Java & Android @@ -33,9 +35,9 @@ bitly.bitlinks().create(title="Erik's Weblog", long_url = "https://erik.thauvin. 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 [bld](https://github.com/ethauvin/bitly-shorten/blob/master/examples/bld) or [Gradle](https://github.com/ethauvin/bitly-shorten/blob/master/examples/gradle) Examples. -### API Access Token +## API Access Token The Bitly API [Access Token](https://bitly.is/accesstoken) can be specified directly as well as via the `BITLY_ACCESS_TOKEN` environment variable or properties key. @@ -53,9 +55,22 @@ val bitly = Bitly(File("my.properties")) BITLY_ACCESS_TOKEN=abc123def456ghi789jkl0 ``` -### Gradle, Maven, etc… +## bld -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: +To use with [bld](https://rife2.com/bld), include the following dependency in your [build](https://github.com/ethauvin/bitly-shorten/blob/master/examples/bld/src/bld/java/com/example/ExampleBuild.java) file: + +```java +repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY); + +scope(compile) + .include(dependency("net.thauvin.erik:bitly-shorten:2.0.0")); +``` + +Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project. + +## 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/gradle/build.gradle.kts) file: ```gradle repositories { @@ -64,7 +79,7 @@ repositories { } dependencies { - implementation("net.thauvin.erik:bitly-shorten:1.0.0") + implementation("net.thauvin.erik:bitly-shorten:2.0.0") } ``` @@ -75,18 +90,16 @@ Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](htt To make it easier to use the library with Java, configuration builders are available: ```java -var config = new CreateConfig.Builder() +var config = new CreateConfig.Builder("https://erik.thauvin.net/blog") .title("Erik's Weblog") .tags(new String[] { "blog", "weblog"}) - .longUrl("https://erik.thauvin.net/blog") .build(); bitly.bitlinks().create(config); ``` ```java -var config = new UpdateConfig.Builder() - .bitlink("https://bit.ly/380ojFd") +var config = new UpdateConfig.Builder("https://bit.ly/380ojFd") .title("Erik's Weblog") .tags(new String[] { "blog", "weblog"}) .build(); @@ -94,7 +107,7 @@ var config = new UpdateConfig.Builder() bitly.bitlinks().update(config); ``` -### JSON +## JSON All implemented API calls can return the full JSON responses: @@ -111,6 +124,8 @@ bitly.bitlinks().shorten("https://www.erik.thauvin.net/blog", toJson = true) } ``` +## API Response & Endpoints + You can also access the last response from implemented API calls using: ```kotlin @@ -154,8 +169,27 @@ if (response.isSuccessful) { } ``` -- View [Example](https://github.com/ethauvin/bitly-shorten/blob/master/examples/src/main/kotlin/com/example/BitlyRetrieve.kt) +- View [Example](https://github.com/ethauvin/bitly-shorten/blob/master/examples/bld/src/main/kotlin/com/example/BitlyRetrieve.kt) -### More… +## Contributing + +If you want to contribute to this project, all you have to do is clone the GitHub +repository: + +```console +git clone git@github.com:ethauvin/bitly-shorten.git +``` + +Then use [bld](https://rife2.com/bld) to build: + +```console +cd bitly-shorten +./bld compile +``` + +The project has an [IntelliJ IDEA](https://www.jetbrains.com/idea/) project structure. You can just open it after all +the dependencies were downloaded and peruse the code. + +## More… If all else fails, there's always more [Documentation](https://ethauvin.github.io/bitly-shorten/). diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index a9514a0..ace99d2 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -1,9 +1,20 @@ -image: maven:3-openjdk-18 +image: ubuntu:latest pipelines: default: - step: - caches: - - gradle + name: Test with bld script: - - bash ./gradlew check + # Install latest Java & Kotlin via SDKMAN! + - apt-get update -qq && apt-get install -y curl zip + - curl -s "https://get.sdkman.io" | bash + - echo sdkman_auto_answer=true > $HOME/.sdkman/etc/config + - echo sdkman_auto_selfupdate=true >> $HOME/.sdkman/etc/config + - source "$HOME/.sdkman/bin/sdkman-init.sh" + - sdk install java + - sdk install kotlin + - source "$HOME/.sdkman/bin/sdkman-init.sh" + # Download, compile and test with bld + - ./bld download + - ./bld compile + - ./bld test diff --git a/bld b/bld new file mode 100755 index 0000000..cdbee34 --- /dev/null +++ b/bld @@ -0,0 +1,2 @@ +#!/usr/bin/env sh +java -jar "$(dirname "$0")/lib/bld/bld-wrapper.jar" "$0" --build net.thauvin.erik.bitly.BitlyShortenBuild "$@" \ No newline at end of file diff --git a/bld.bat b/bld.bat new file mode 100644 index 0000000..e728da9 --- /dev/null +++ b/bld.bat @@ -0,0 +1,4 @@ +@echo off +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +java -jar "%DIRNAME%/lib/bld/bld-wrapper.jar" "%0" --build net.thauvin.erik.bitly.BitlyShortenBuild %* \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts deleted file mode 100644 index 6fe846a..0000000 --- a/build.gradle.kts +++ /dev/null @@ -1,259 +0,0 @@ -import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask -import org.gradle.api.tasks.testing.logging.TestExceptionFormat -import org.gradle.api.tasks.testing.logging.TestLogEvent -import org.jetbrains.kotlin.gradle.tasks.KotlinCompile -import java.net.URL - -plugins { - id("com.github.ben-manes.versions") version "0.48.0" - id("io.gitlab.arturbosch.detekt") version "1.23.1" - id("java") - id("java-library") - id("maven-publish") - id("net.thauvin.erik.gradle.semver") version "1.0.4" - id("org.jetbrains.dokka") version "1.9.0" - id("org.jetbrains.kotlinx.kover") version "0.7.3" - id("org.sonarqube") version "4.3.1.3277" - id("signing") - kotlin("jvm") version "1.9.10" - kotlin("kapt") version "1.9.10" -} - -group = "net.thauvin.erik" -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" - -val publicationName = "mavenJava" - -object Versions { - const val OKHTTP = "4.11.0" -} - -fun isNonStable(version: String): Boolean { - val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.uppercase().contains(it) } - val regex = "^[0-9,.v-]+(-r)?$".toRegex() - val isStable = stableKeyword || regex.matches(version) - return isStable.not() -} - -repositories { - mavenCentral() - maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") } -} - -dependencies { - implementation(platform(kotlin("bom"))) - - implementation("com.squareup.okhttp3:okhttp:${Versions.OKHTTP}") - implementation("com.squareup.okio:okio:3.5.0") - implementation("com.squareup.okhttp3:logging-interceptor:${Versions.OKHTTP}") - implementation("org.json:json:20230618") - - testImplementation(kotlin("test")) - testImplementation(kotlin("test-junit")) - testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.27.0") -} - -kapt { - arguments { - arg("semver.project.dir", projectDir) - } -} - -detekt { - //toolVersion = "main-SNAPSHOT" - baseline = project.rootDir.resolve("config/detekt/baseline.xml") -} - -java { - sourceCompatibility = JavaVersion.VERSION_11 - targetCompatibility = JavaVersion.VERSION_11 - withSourcesJar() -} - -koverReport { - defaults { - xml { - onCheck = true - } - html { - onCheck = true - } - } -} - -sonarqube { - properties { - property("sonar.projectKey", "ethauvin_$name") - property("sonar.organization", "ethauvin-github") - property("sonar.host.url", "https://sonarcloud.io") - property("sonar.sourceEncoding", "UTF-8") - property("sonar.coverage.jacoco.xmlReportPaths", "${layout.buildDirectory.get()}/reports/kover/report.xml") - } -} - -val javadocJar by tasks.creating(Jar::class) { - dependsOn(tasks.dokkaJavadoc) - from(tasks.dokkaJavadoc) - archiveClassifier.set("javadoc") - description = "Assembles a JAR of the generated Javadoc." - group = JavaBasePlugin.DOCUMENTATION_GROUP -} - -tasks { - withType().configureEach { - kotlinOptions.jvmTarget = java.targetCompatibility.toString() - } - - withType { - rejectVersionIf { - isNonStable(candidate.version) - } - } - - withType { - testLogging { - exceptionFormat = TestExceptionFormat.FULL - events = setOf(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED) - } - } - - withType { - destination = file("$projectDir/pom.xml") - } - - - clean { - doLast { - project.delete(fileTree(deployDir)) - project.delete(files(docsDir)) - } - } - - dokkaHtml { - outputDirectory.set(file(docsDir)) - - dokkaSourceSets { - configureEach { - includes.from("config/dokka/packages.md") - sourceLink { - localDirectory.set(file("src/main/kotlin/")) - remoteUrl.set(URL("https://github.com/ethauvin/${project.name}/tree/master/src/main/kotlin/")) - remoteLineSuffix.set("#L") - } - - } - } - mustRunAfter("kaptKotlin") - } - - dokkaJavadoc { - dokkaSourceSets { - configureEach { - includes.from("config/dokka/packages.md") - } - } - dependsOn(dokkaHtml) - } - - val copyToDeploy by registering(Copy::class) { - from(configurations.runtimeClasspath) { - exclude("annotations-*.jar") - exclude("kotlin-*.jar") - exclude("json-*.jar") - } - from(jar) - into(deployDir) - } - - register("deploy") { - description = "Copies all needed files to the $deployDir directory." - group = PublishingPlugin.PUBLISH_TASK_GROUP - dependsOn(clean, build, jar) - outputs.dir(deployDir) - inputs.files(copyToDeploy) - mustRunAfter(clean) - } - - val gitIsDirty by registering(Exec::class) { - description = "Fails if git has uncommitted changes." - group = "verification" - commandLine("git", "diff", "--quiet", "--exit-code") - } - - val gitTag by registering(Exec::class) { - description = "Tags the local repository with version ${project.version}" - group = PublishingPlugin.PUBLISH_TASK_GROUP - dependsOn(gitIsDirty) - if (isRelease) { - commandLine("git", "tag", "-a", project.version, "-m", "Version ${project.version}") - } - } - - register("release") { - description = "Publishes version ${project.version} to local repository." - group = PublishingPlugin.PUBLISH_TASK_GROUP - dependsOn("deploy", gitTag, publishToMavenLocal) - } -} - -publishing { - publications { - create(publicationName) { - from(components["java"]) - artifact(javadocJar) - pom { - name.set(project.name) - description.set(project.description) - url.set(mavenUrl) - licenses { - license { - name.set("BSD 3-Clause") - url.set("https://opensource.org/licenses/BSD-3-Clause") - } - } - developers { - developer { - id.set("ethauvin") - name.set("Erik C. Thauvin") - email.set("erik@thauvin.net") - url.set("https://erik.thauvin.net/") - } - } - scm { - connection.set("scm:git:https://github.com/$gitHub.git") - developerConnection.set("scm:git:git@github.com:$gitHub.git") - url.set(mavenUrl) - } - issueManagement { - system.set("GitHub") - url.set("$mavenUrl/issues") - } - } - } - } - repositories { - maven { - name = "ossrh" - project.afterEvaluate { - url = if (version.toString().contains("SNAPSHOT")) - uri("https://oss.sonatype.org/content/repositories/snapshots/") - else - uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/") - } - credentials(PasswordCredentials::class) - } - } -} - -signing { - useGpgCmd() - sign(publishing.publications[publicationName]) -} diff --git a/config/detekt/baseline.xml b/config/detekt/baseline.xml index 907d890..dc8efc2 100644 --- a/config/detekt/baseline.xml +++ b/config/detekt/baseline.xml @@ -1,44 +1,26 @@ - + - + - ConstructorParameterNaming:CreateConfig.kt$CreateConfig$val group_guid: String - ConstructorParameterNaming:CreateConfig.kt$CreateConfig$val long_url: String - ConstructorParameterNaming:CreateConfig.kt$CreateConfig.Builder$private var group_guid: String = Constants.EMPTY - ConstructorParameterNaming:CreateConfig.kt$CreateConfig.Builder$private var long_url: String = Constants.EMPTY - ConstructorParameterNaming:UpdateConfig.kt$UpdateConfig$val client_id: String - ConstructorParameterNaming:UpdateConfig.kt$UpdateConfig$val created_at: String - ConstructorParameterNaming:UpdateConfig.kt$UpdateConfig$val created_by: String - ConstructorParameterNaming:UpdateConfig.kt$UpdateConfig$val custom_bitlinks: Array<String> - ConstructorParameterNaming:UpdateConfig.kt$UpdateConfig$val long_url: String - ConstructorParameterNaming:UpdateConfig.kt$UpdateConfig.Builder$private var client_id: String = Constants.EMPTY - ConstructorParameterNaming:UpdateConfig.kt$UpdateConfig.Builder$private var created_at: String = Constants.EMPTY - ConstructorParameterNaming:UpdateConfig.kt$UpdateConfig.Builder$private var created_by: String = Constants.EMPTY - ConstructorParameterNaming:UpdateConfig.kt$UpdateConfig.Builder$private var custom_bitlinks: Array<String> = emptyArray() - ConstructorParameterNaming:UpdateConfig.kt$UpdateConfig.Builder$private var long_url: String = Constants.EMPTY - CyclomaticComplexMethod:Bitlinks.kt$Bitlinks$@Synchronized fun update( bitlink: String, 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 ): String - FunctionNaming:CreateConfig.kt$CreateConfig.Builder$fun group_guid(group_guid: String) + ConstructorParameterNaming:CreateConfig.kt$CreateConfig.Builder$var long_url: String FunctionParameterNaming:Bitlinks.kt$Bitlinks$bitlink_id: String - FunctionParameterNaming:Bitlinks.kt$Bitlinks$client_id: String = Constants.EMPTY - FunctionParameterNaming:Bitlinks.kt$Bitlinks$created_at: String = Constants.EMPTY - FunctionParameterNaming:Bitlinks.kt$Bitlinks$created_by: String = Constants.EMPTY - FunctionParameterNaming:Bitlinks.kt$Bitlinks$custom_bitlinks: Array<String> = emptyArray() + FunctionParameterNaming:Bitlinks.kt$Bitlinks$custom_bitlink: String FunctionParameterNaming:Bitlinks.kt$Bitlinks$group_guid: String = Constants.EMPTY FunctionParameterNaming:Bitlinks.kt$Bitlinks$long_url: String - FunctionParameterNaming:Bitlinks.kt$Bitlinks$long_url: String = Constants.EMPTY FunctionParameterNaming:Bitlinks.kt$Bitlinks$unit_reference: String = Constants.EMPTY FunctionParameterNaming:CreateConfig.kt$CreateConfig.Builder$group_guid: String FunctionParameterNaming:CreateConfig.kt$CreateConfig.Builder$long_url: String - FunctionParameterNaming:UpdateConfig.kt$UpdateConfig.Builder$client_id: String - FunctionParameterNaming:UpdateConfig.kt$UpdateConfig.Builder$created_at: String - FunctionParameterNaming:UpdateConfig.kt$UpdateConfig.Builder$created_by: String - FunctionParameterNaming:UpdateConfig.kt$UpdateConfig.Builder$custom_bitlinks: Array<String> - FunctionParameterNaming:UpdateConfig.kt$UpdateConfig.Builder$long_url: String - LongParameterList:Bitlinks.kt$Bitlinks$( bitlink: String, 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 ) - LongParameterList:Bitlinks.kt$Bitlinks$( bitlink: String, unit: Units = Units.DAY, units: Int = -1, size: Int = 50, unit_reference: String = Constants.EMPTY, toJson: Boolean = false ) - LongParameterList:Bitlinks.kt$Bitlinks$( domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: Array<Map<String, String>> = emptyArray(), long_url: String, toJson: Boolean = false ) - LongParameterList:CreateConfig.kt$CreateConfig$( val domain: String, val title: String, val group_guid: String, val tags: Array<String>, val deepLinks: Array<Map<String, String>>, val long_url: String, val toJson: Boolean ) - LongParameterList:UpdateConfig.kt$UpdateConfig$( val bitlink: String, val references: Map<String, String>, val archived: Boolean, val tags: Array<String>, val created_at: String, val title: String, val deepLinks: Array<Map<String, String>>, val created_by: String, val long_url: String, val client_id: String, val custom_bitlinks: Array<String>, val link: String, val id: String, val toJson: Boolean, ) + FunctionParameterNaming:CreateDeeplinks.kt$CreateDeeplinks$app_id: String + FunctionParameterNaming:CreateDeeplinks.kt$CreateDeeplinks$app_uri_path: String + FunctionParameterNaming:CreateDeeplinks.kt$CreateDeeplinks$install_type: InstallType + FunctionParameterNaming:CreateDeeplinks.kt$CreateDeeplinks$install_url: String + FunctionParameterNaming:UpdateDeeplinks.kt$UpdateDeeplinks$app_guid: String + FunctionParameterNaming:UpdateDeeplinks.kt$UpdateDeeplinks$app_uri_path: String + FunctionParameterNaming:UpdateDeeplinks.kt$UpdateDeeplinks$brand_guid: String + FunctionParameterNaming:UpdateDeeplinks.kt$UpdateDeeplinks$install_type: InstallType + FunctionParameterNaming:UpdateDeeplinks.kt$UpdateDeeplinks$install_url: String + LongParameterList:Bitlinks.kt$Bitlinks$( bitlink: String, title: String = Constants.EMPTY, archived: Boolean = false, tags: Array<String> = emptyArray(), deeplinks: UpdateDeeplinks = UpdateDeeplinks(), toJson: Boolean = false ) + LongParameterList:Bitlinks.kt$Bitlinks$( long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, title: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: CreateDeeplinks = CreateDeeplinks(), toJson: Boolean = false ) MagicNumber:CallResponse.kt$CallResponse$200 MagicNumber:CallResponse.kt$CallResponse$201 MagicNumber:CallResponse.kt$CallResponse$299 @@ -53,9 +35,13 @@ MagicNumber:CallResponse.kt$CallResponse$500 MagicNumber:CallResponse.kt$CallResponse$503 NestedBlockDepth:Bitlinks.kt$Bitlinks$private fun parseJsonResponse(response: CallResponse, key: String, default: String, toJson: Boolean): String - NestedBlockDepth:Utils.kt$Utils$@JvmStatic @JvmOverloads fun call( accessToken: String, endPoint: String, params: Map<String, Any> = emptyMap(), method: Methods = Methods.POST ): CallResponse + NestedBlockDepth:BitlyExample.kt$fun main(args: Array<String>) + NestedBlockDepth:Utils.kt$Utils$@JvmStatic @JvmOverloads fun call( accessToken: String, endPoint: String, params: Map<String, Any> = emptyMap(), method: Methods = Methods.POST ): CallResponse NestedBlockDepth:Utils.kt$Utils$private fun parseResponse(response: Response, endPoint: String): CallResponse - TooManyFunctions:UpdateConfig.kt$UpdateConfig$Builder + TooManyFunctions:UpdateDeeplinks.kt$UpdateDeeplinks + VariableNaming:CreateConfig.kt$CreateConfig$val group_guid = builder.group_guid + VariableNaming:CreateConfig.kt$CreateConfig$val long_url = builder.long_url + VariableNaming:CreateConfig.kt$CreateConfig.Builder$var group_guid: String = Constants.EMPTY WildcardImport:BitlyTest.kt$import assertk.assertions.* WildcardImport:BitlyTest.kt$import kotlin.test.* diff --git a/config/dokka/packages.md b/config/dokka/packages.md index a55184f..d808e00 100644 --- a/config/dokka/packages.md +++ b/config/dokka/packages.md @@ -10,4 +10,12 @@ Provides the classes necessary to access the [Bitly API v4](https://dev.bitly.co # Package net.thauvin.erik.bitly.config -Provides configuration builders. +Provides configuration builders for creating and updating Bitlinks. + +# Package net.thauvin.erik.bitly.config.deeplinks + +Provides deeplinks configurations for creating and updating Bitlinks. + +# Package net.thauvin.erik.bitly.config.deeplinks.enums + +Provides the deeplinks enumerations. diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html new file mode 100644 index 0000000..1759f99 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html @@ -0,0 +1,134 @@ + + + + + AUTO_INSTALL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

AUTO_INSTALL

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-n-o_-i-n-s-t-a-l-l/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-n-o_-i-n-s-t-a-l-l/index.html new file mode 100644 index 0000000..179a8e5 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-n-o_-i-n-s-t-a-l-l/index.html @@ -0,0 +1,134 @@ + + + + + NO_INSTALL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

NO_INSTALL

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html new file mode 100644 index 0000000..341ee10 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html @@ -0,0 +1,134 @@ + + + + + PROMOTE_INSTALL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

PROMOTE_INSTALL

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/index.html new file mode 100644 index 0000000..6460f47 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/index.html @@ -0,0 +1,217 @@ + + + + + InstallType + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

InstallType

+

Defines the installation types.

Since

2.0

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/type.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/type.html new file mode 100644 index 0000000..876846e --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/type.html @@ -0,0 +1,80 @@ + + + + + type + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

type

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/value-of.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/value-of.html new file mode 100644 index 0000000..c8259b4 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/value-of.html @@ -0,0 +1,80 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

valueOf

+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/values.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/values.html new file mode 100644 index 0000000..5527682 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/values.html @@ -0,0 +1,80 @@ + + + + + values + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/-a-n-d-r-o-i-d/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/-a-n-d-r-o-i-d/index.html new file mode 100644 index 0000000..f594ecc --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/-a-n-d-r-o-i-d/index.html @@ -0,0 +1,134 @@ + + + + + ANDROID + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

ANDROID

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/-i-o-s/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/-i-o-s/index.html new file mode 100644 index 0000000..f988122 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/-i-o-s/index.html @@ -0,0 +1,134 @@ + + + + + IOS + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

IOS

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/index.html new file mode 100644 index 0000000..0a4a370 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/index.html @@ -0,0 +1,202 @@ + + + + + Os + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Os

+
enum Os : Enum<Os> (source)

Defines the operating system types.

Since

2.0

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun valueOf(value: String): Os

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun values(): Array<Os>

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/type.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/type.html new file mode 100644 index 0000000..1c7c862 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/type.html @@ -0,0 +1,80 @@ + + + + + type + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

type

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/value-of.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/value-of.html new file mode 100644 index 0000000..bf09e43 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/value-of.html @@ -0,0 +1,80 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

valueOf

+
+
fun valueOf(value: String): Os(source)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/values.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/values.html new file mode 100644 index 0000000..589b591 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/values.html @@ -0,0 +1,80 @@ + + + + + values + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/index.html new file mode 100644 index 0000000..fa86d9c --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/index.html @@ -0,0 +1,119 @@ + + + + + net.thauvin.erik.bitly.config.deeplinks.enums + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Package-level declarations

+

Provides the deeplinks enumerations.

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Defines the installation types.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
enum Os : Enum<Os>

Defines the operating system types.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/-create-deeplinks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/-create-deeplinks.html new file mode 100644 index 0000000..102a2c2 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/-create-deeplinks.html @@ -0,0 +1,80 @@ + + + + + CreateDeeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CreateDeeplinks

+
+
constructor()(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_id.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_id.html new file mode 100644 index 0000000..94db48f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_id.html @@ -0,0 +1,80 @@ + + + + + app_id + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

app_id

+
+
fun app_id(app_id: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_uri_path.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_uri_path.html new file mode 100644 index 0000000..e9edb8a --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_uri_path.html @@ -0,0 +1,80 @@ + + + + + app_uri_path + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

app_uri_path

+
+
fun app_uri_path(app_uri_path: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/index.html new file mode 100644 index 0000000..d5d0430 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/index.html @@ -0,0 +1,198 @@ + + + + + CreateDeeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CreateDeeplinks

+

Configures deeplinks used when creating Bitlinks.

See the Bit.ly API for more information.

Since

2.0

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor()
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun app_id(): String?
fun app_id(app_id: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun app_uri_path(app_uri_path: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun install_url(install_url: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns true if there are defined links.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the links.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_type.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_type.html new file mode 100644 index 0000000..2b581e4 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_type.html @@ -0,0 +1,80 @@ + + + + + install_type + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

install_type

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_url.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_url.html new file mode 100644 index 0000000..9678662 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_url.html @@ -0,0 +1,80 @@ + + + + + install_url + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

install_url

+
+
fun install_url(install_url: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/is-not-empty.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/is-not-empty.html new file mode 100644 index 0000000..a0ddb84 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/is-not-empty.html @@ -0,0 +1,80 @@ + + + + + isNotEmpty + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isNotEmpty

+
+

Returns true if there are defined links.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/links.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/links.html new file mode 100644 index 0000000..20729fe --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/links.html @@ -0,0 +1,80 @@ + + + + + links + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

links

+
+

Returns the links.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html new file mode 100644 index 0000000..ba97e75 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html @@ -0,0 +1,134 @@ + + + + + AUTO_INSTALL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

AUTO_INSTALL

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/-n-o_-i-n-s-t-a-l-l/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/-n-o_-i-n-s-t-a-l-l/index.html new file mode 100644 index 0000000..2e46558 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/-n-o_-i-n-s-t-a-l-l/index.html @@ -0,0 +1,134 @@ + + + + + NO_INSTALL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

NO_INSTALL

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html new file mode 100644 index 0000000..b7a7ded --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html @@ -0,0 +1,134 @@ + + + + + PROMOTE_INSTALL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

PROMOTE_INSTALL

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/index.html new file mode 100644 index 0000000..9dfc398 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/index.html @@ -0,0 +1,217 @@ + + + + + InstallType + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

InstallType

+

Defines the installation types.

Since

2.0

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/type.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/type.html new file mode 100644 index 0000000..d1c4993 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/type.html @@ -0,0 +1,80 @@ + + + + + type + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

type

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/value-of.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/value-of.html new file mode 100644 index 0000000..45d7122 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/value-of.html @@ -0,0 +1,80 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

valueOf

+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/values.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/values.html new file mode 100644 index 0000000..d6194aa --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-install-type/values.html @@ -0,0 +1,80 @@ + + + + + values + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/-a-n-d-r-o-i-d/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/-a-n-d-r-o-i-d/index.html new file mode 100644 index 0000000..b2b5366 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/-a-n-d-r-o-i-d/index.html @@ -0,0 +1,134 @@ + + + + + ANDROID + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

ANDROID

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/-i-o-s/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/-i-o-s/index.html new file mode 100644 index 0000000..b3cf256 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/-i-o-s/index.html @@ -0,0 +1,134 @@ + + + + + IOS + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

IOS

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/index.html new file mode 100644 index 0000000..66c8cd8 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/index.html @@ -0,0 +1,202 @@ + + + + + Os + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Os

+
enum Os : Enum<Os> (source)

Defines the operating system types.

Since

2.0

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun valueOf(value: String): Os

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun values(): Array<Os>

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/type.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/type.html new file mode 100644 index 0000000..80adbe1 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/type.html @@ -0,0 +1,80 @@ + + + + + type + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

type

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/value-of.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/value-of.html new file mode 100644 index 0000000..a521eeb --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/value-of.html @@ -0,0 +1,80 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

valueOf

+
+
fun valueOf(value: String): Os(source)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/values.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/values.html new file mode 100644 index 0000000..417a6d4 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-os/values.html @@ -0,0 +1,80 @@ + + + + + values + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/-update-deeplinks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/-update-deeplinks.html new file mode 100644 index 0000000..a06648f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/-update-deeplinks.html @@ -0,0 +1,80 @@ + + + + + UpdateDeeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

UpdateDeeplinks

+
+
constructor()(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_guid.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_guid.html new file mode 100644 index 0000000..5f66075 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_guid.html @@ -0,0 +1,80 @@ + + + + + app_guid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

app_guid

+
+
fun app_guid(app_guid: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_uri_path.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_uri_path.html new file mode 100644 index 0000000..85bf02d --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_uri_path.html @@ -0,0 +1,80 @@ + + + + + app_uri_path + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

app_uri_path

+
+
fun app_uri_path(app_uri_path: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/bitlink.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/bitlink.html new file mode 100644 index 0000000..3990dd5 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/bitlink.html @@ -0,0 +1,80 @@ + + + + + bitlink + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

bitlink

+
+
fun bitlink(bitlink: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/brand_guid.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/brand_guid.html new file mode 100644 index 0000000..a2d46f0 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/brand_guid.html @@ -0,0 +1,80 @@ + + + + + brand_guid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

brand_guid

+
+
fun brand_guid(brand_guid: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/created.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/created.html new file mode 100644 index 0000000..cb696b2 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/created.html @@ -0,0 +1,80 @@ + + + + + created + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

created

+
+
fun created(created: String)(source)

ISO timestamp.


+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/guid.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/guid.html new file mode 100644 index 0000000..73895eb --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/guid.html @@ -0,0 +1,80 @@ + + + + + guid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

guid

+
+
fun guid(guid: String)(source)
fun guid(): String?(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/index.html new file mode 100644 index 0000000..9977c15 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/index.html @@ -0,0 +1,288 @@ + + + + + UpdateDeeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

UpdateDeeplinks

+

Configures deeplinks used when updating Bitlinks.

See the Bit.ly API for more information.

Since

2.0

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor()
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun app_guid(app_guid: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun app_uri_path(app_uri_path: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun bitlink(): String?
fun bitlink(bitlink: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun brand_guid(brand_guid: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun created(): String?

fun created(created: ZonedDateTime)
fun created(created: String)

ISO timestamp.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun guid(): String?
fun guid(guid: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun install_url(install_url: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns true if there are defined links.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the links.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

fun modified(modified: ZonedDateTime)
fun modified(modified: String)

ISO timestamp.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun os(): Os?
fun os(os: Os)
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_type.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_type.html new file mode 100644 index 0000000..0014241 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_type.html @@ -0,0 +1,80 @@ + + + + + install_type + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

install_type

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_url.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_url.html new file mode 100644 index 0000000..f60480f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_url.html @@ -0,0 +1,80 @@ + + + + + install_url + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

install_url

+
+
fun install_url(install_url: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/is-not-empty.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/is-not-empty.html new file mode 100644 index 0000000..2eec99f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/is-not-empty.html @@ -0,0 +1,80 @@ + + + + + isNotEmpty + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isNotEmpty

+
+

Returns true if there are defined links.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/links.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/links.html new file mode 100644 index 0000000..73750b5 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/links.html @@ -0,0 +1,80 @@ + + + + + links + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

links

+
+

Returns the links.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/modified.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/modified.html new file mode 100644 index 0000000..a6e8b1a --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/modified.html @@ -0,0 +1,80 @@ + + + + + modified + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

modified

+
+
fun modified(modified: String)(source)
fun modified(modified: ZonedDateTime)(source)

ISO timestamp.


+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/os.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/os.html new file mode 100644 index 0000000..1c3a4e1 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/os.html @@ -0,0 +1,80 @@ + + + + + os + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

os

+
+
fun os(os: Os)(source)
fun os(): Os?(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/index.html new file mode 100644 index 0000000..75ef5ca --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/index.html @@ -0,0 +1,119 @@ + + + + + net.thauvin.erik.bitly.config.deeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Package-level declarations

+

Provides deeplinks configurations for creating and updating Bitlinks.

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Configures deeplinks used when creating Bitlinks.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Configures deeplinks used when updating Bitlinks.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..283d38d --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/-builder.html @@ -0,0 +1,80 @@ + + + + + Builder + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Builder

+
+
constructor(long_url: String)(source)
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..92e5ad9 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/build.html @@ -0,0 +1,80 @@ + + + + + build + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

build

+
+

Builds the configuration.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..152aa0c --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html @@ -0,0 +1,80 @@ + + + + + deeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deeplinks

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..0a9fbe7 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.html @@ -0,0 +1,80 @@ + + + + + domain + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

domain

+
+

A branded short domain or bit.ly by default.


+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html new file mode 100644 index 0000000..f5ea99d --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html @@ -0,0 +1,80 @@ + + + + + groupGuid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

groupGuid

+
+

Always include a specific group and custom domain in your shorten calls.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group_guid.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group_guid.html new file mode 100644 index 0000000..278de99 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group_guid.html @@ -0,0 +1,80 @@ + + + + + group_guid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

group_guid

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html new file mode 100644 index 0000000..eb581ad --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html @@ -0,0 +1,337 @@ + + + + + Builder + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Builder

+
data class Builder(var long_url: String)(source)

Configures the creation parameters of a Bitlink.

See the Bit.ly API for more information.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(long_url: String)
+
+
+
+
+
+
+
+

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
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Builds the configuration.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

A branded short domain or bit.ly by default.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Always include a specific group and custom domain in your shorten calls.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

The long URL.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the full JSON response if true.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..d7cf154 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long-url.html @@ -0,0 +1,80 @@ + + + + + longUrl + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

longUrl

+
+

The long URL.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..f0e16ab --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long_url.html @@ -0,0 +1,80 @@ + + + + + long_url + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

long_url

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..1b72fdd --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.html @@ -0,0 +1,80 @@ + + + + + tags + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

tags

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..3a5be40 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.html @@ -0,0 +1,80 @@ + + + + + title + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

title

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..8e317e4 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html @@ -0,0 +1,80 @@ + + + + + toJson + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

toJson

+
+

Returns the full JSON response if true.


+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-create-config.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-create-config.html new file mode 100644 index 0000000..e2bbce3 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-create-config.html @@ -0,0 +1,80 @@ + + + + + CreateConfig + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CreateConfig

+
+
constructor(builder: CreateConfig.Builder)(source)
constructor(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, title: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: CreateDeeplinks = CreateDeeplinks(), toJson: Boolean = false)(source)
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..a1e86fa --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/deep-links.html @@ -0,0 +1,80 @@ + + + + + deepLinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deepLinks

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/deeplinks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/deeplinks.html new file mode 100644 index 0000000..43be944 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/deeplinks.html @@ -0,0 +1,80 @@ + + + + + deeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deeplinks

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..ebb7224 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/domain.html @@ -0,0 +1,80 @@ + + + + + domain + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

domain

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..3c80f33 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/group_guid.html @@ -0,0 +1,80 @@ + + + + + group_guid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

group_guid

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..3d58a28 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/index.html @@ -0,0 +1,232 @@ + + + + + CreateConfig + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CreateConfig

+
class CreateConfig constructor(var long_url: String, var domain: String = Constants.EMPTY, var group_guid: String = Constants.EMPTY, var title: String = Constants.EMPTY, var tags: Array<String> = emptyArray(), var deeplinks: CreateDeeplinks = CreateDeeplinks(), var toJson: Boolean = false)(source)

Provides a configuration to create a Bitlink

See the Bit.ly API for more information.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(builder: CreateConfig.Builder)
constructor(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, title: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: CreateDeeplinks = CreateDeeplinks(), toJson: Boolean = false)
+
+
+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
data class Builder(var long_url: String)

Configures the creation parameters of a Bitlink.

+
+
+
+
+
+
+
+

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
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..625d737 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/long_url.html @@ -0,0 +1,80 @@ + + + + + long_url + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

long_url

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..ed0ac0e --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/tags.html @@ -0,0 +1,80 @@ + + + + + tags + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

tags

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..8398818 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/title.html @@ -0,0 +1,80 @@ + + + + + title + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

title

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..b7b35c4 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/to-json.html @@ -0,0 +1,80 @@ + + + + + toJson + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

toJson

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..d2c189f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/-builder.html @@ -0,0 +1,80 @@ + + + + + Builder + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Builder

+
+
constructor(bitlink: String)(source)
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..614c33b --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html @@ -0,0 +1,80 @@ + + + + + archived + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

archived

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

bitlink

+
+

A Bitlink made of the domain and hash.


+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html new file mode 100644 index 0000000..59e9a96 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html @@ -0,0 +1,80 @@ + + + + + build + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

build

+
+

Builds the configuration.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..9acc617 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client-id.html @@ -0,0 +1,80 @@ + + + + + clientId + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

clientId

+
+
fun clientId(clientId: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html new file mode 100644 index 0000000..6cb8ea7 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html @@ -0,0 +1,80 @@ + + + + + createdAt + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

createdAt

+
+
fun createdAt(createdAt: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html new file mode 100644 index 0000000..9111f41 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html @@ -0,0 +1,80 @@ + + + + + createdBy + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

createdBy

+
+
fun createdBy(createdBy: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html new file mode 100644 index 0000000..9aa4f53 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html @@ -0,0 +1,80 @@ + + + + + customBitlinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

customBitlinks

+
+
fun customBitlinks(customBitlinks: Array<String>): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html new file mode 100644 index 0000000..37af8e3 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html @@ -0,0 +1,80 @@ + + + + + deepLinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deepLinks

+
+
fun deepLinks(deepLinks: Array<Map<String, String>>): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deeplinks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deeplinks.html new file mode 100644 index 0000000..602177d --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deeplinks.html @@ -0,0 +1,80 @@ + + + + + deeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deeplinks

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html new file mode 100644 index 0000000..2507cee --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html @@ -0,0 +1,80 @@ + + + + + id + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

id

+
+
fun id(id: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html new file mode 100644 index 0000000..43f1d83 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html @@ -0,0 +1,307 @@ + + + + + Builder + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Builder

+
data class Builder(var bitlink: String)(source)

Configures the update parameters of a Bitlink.

See the Bit.ly API for more information.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(bitlink: String)
+
+
+
+
+
+
+
+

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
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

A Bitlink made of the domain and hash.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Builds the configuration.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the full JSON response if true.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..7800c87 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html @@ -0,0 +1,80 @@ + + + + + link + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

link

+
+
fun link(link: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html new file mode 100644 index 0000000..7c64215 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html @@ -0,0 +1,80 @@ + + + + + longUrl + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

longUrl

+
+
fun longUrl(longUrl: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html new file mode 100644 index 0000000..aa3ccf2 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html @@ -0,0 +1,80 @@ + + + + + references + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

references

+
+
fun references(references: Map<String, String>): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html new file mode 100644 index 0000000..7ec41c3 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html @@ -0,0 +1,80 @@ + + + + + tags + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

tags

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

title

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

toJson

+
+

Returns the full JSON response if true.


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

UpdateConfig

+
+
constructor(builder: UpdateConfig.Builder)(source)
constructor(bitlink: String, title: String = Constants.EMPTY, archived: Boolean = false, tags: Array<String> = emptyArray(), deeplinks: UpdateDeeplinks = UpdateDeeplinks(), toJson: Boolean = false)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/archived.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/archived.html new file mode 100644 index 0000000..7fe17fc --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/archived.html @@ -0,0 +1,80 @@ + + + + + archived + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

archived

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..df7726a --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html @@ -0,0 +1,80 @@ + + + + + bitlink + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

bitlink

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..65e5dab --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/client_id.html @@ -0,0 +1,80 @@ + + + + + client_id + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

client_id

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..26c1637 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/created_at.html @@ -0,0 +1,80 @@ + + + + + created_at + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

created_at

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..111fe54 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/created_by.html @@ -0,0 +1,80 @@ + + + + + created_by + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

created_by

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..d5396b6 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/custom_bitlinks.html @@ -0,0 +1,80 @@ + + + + + custom_bitlinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

custom_bitlinks

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..c769419 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/deep-links.html @@ -0,0 +1,80 @@ + + + + + deepLinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deepLinks

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/deeplinks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/deeplinks.html new file mode 100644 index 0000000..2426dc5 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/deeplinks.html @@ -0,0 +1,80 @@ + + + + + deeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deeplinks

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..027c678 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/id.html @@ -0,0 +1,80 @@ + + + + + id + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

id

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..39fd00e --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/index.html @@ -0,0 +1,217 @@ + + + + + UpdateConfig + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

UpdateConfig

+
class UpdateConfig constructor(var bitlink: String, var title: String = Constants.EMPTY, var archived: Boolean = false, var tags: Array<String> = emptyArray(), var deeplinks: UpdateDeeplinks = UpdateDeeplinks(), var toJson: Boolean = false)(source)

Provides a configuration to update a Bitlink.

See the Bit.ly API for more information.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(builder: UpdateConfig.Builder)
constructor(bitlink: String, title: String = Constants.EMPTY, archived: Boolean = false, tags: Array<String> = emptyArray(), deeplinks: UpdateDeeplinks = UpdateDeeplinks(), toJson: Boolean = false)
+
+
+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
data class Builder(var bitlink: String)

Configures the update parameters of a Bitlink.

+
+
+
+
+
+
+
+

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
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..7a2cd46 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/link.html @@ -0,0 +1,80 @@ + + + + + link + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

link

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..3f040d3 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/long_url.html @@ -0,0 +1,80 @@ + + + + + long_url + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

long_url

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..eada1f0 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/references.html @@ -0,0 +1,80 @@ + + + + + references + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

references

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..3354849 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/tags.html @@ -0,0 +1,80 @@ + + + + + tags + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

tags

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..f050a11 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/title.html @@ -0,0 +1,80 @@ + + + + + title + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

title

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..48f757a --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/to-json.html @@ -0,0 +1,80 @@ + + + + + toJson + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

toJson

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.config/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/index.html new file mode 100644 index 0000000..6e41b87 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.config/index.html @@ -0,0 +1,119 @@ + + + + + net.thauvin.erik.bitly.config + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Package-level declarations

+

Provides configuration builders for creating and updating Bitlinks.

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
class CreateConfig constructor(var long_url: String, var domain: String = Constants.EMPTY, var group_guid: String = Constants.EMPTY, var title: String = Constants.EMPTY, var tags: Array<String> = emptyArray(), var deeplinks: CreateDeeplinks = CreateDeeplinks(), var toJson: Boolean = false)

Provides a configuration to create a Bitlink

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
class UpdateConfig constructor(var bitlink: String, var title: String = Constants.EMPTY, var archived: Boolean = false, var tags: Array<String> = emptyArray(), var deeplinks: UpdateDeeplinks = UpdateDeeplinks(), var toJson: Boolean = false)

Provides a configuration to update a Bitlink.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/-create-deeplinks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/-create-deeplinks.html new file mode 100644 index 0000000..51c8b66 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/-create-deeplinks.html @@ -0,0 +1,80 @@ + + + + + CreateDeeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CreateDeeplinks

+
+
constructor()(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/app_id.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/app_id.html new file mode 100644 index 0000000..22423d9 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/app_id.html @@ -0,0 +1,80 @@ + + + + + app_id + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

app_id

+
+
fun app_id(app_id: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/app_uri_path.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/app_uri_path.html new file mode 100644 index 0000000..85b54f2 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/app_uri_path.html @@ -0,0 +1,80 @@ + + + + + app_uri_path + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

app_uri_path

+
+
fun app_uri_path(app_uri_path: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/index.html new file mode 100644 index 0000000..c5e9bf6 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/index.html @@ -0,0 +1,198 @@ + + + + + CreateDeeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CreateDeeplinks

+

Configures deeplinks used when creating Bitlinks.

See the Bit.ly API for more information.

Since

2.0

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor()
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun app_id(): String?
fun app_id(app_id: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun app_uri_path(app_uri_path: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun install_url(install_url: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns true if there are defined links.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the links.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/install_type.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/install_type.html new file mode 100644 index 0000000..82e8a42 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/install_type.html @@ -0,0 +1,80 @@ + + + + + install_type + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

install_type

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/install_url.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/install_url.html new file mode 100644 index 0000000..b554800 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/install_url.html @@ -0,0 +1,80 @@ + + + + + install_url + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

install_url

+
+
fun install_url(install_url: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/is-not-empty.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/is-not-empty.html new file mode 100644 index 0000000..c554a03 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/is-not-empty.html @@ -0,0 +1,80 @@ + + + + + isNotEmpty + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isNotEmpty

+
+

Returns true if there are defined links.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/links.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/links.html new file mode 100644 index 0000000..db0451f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-create-deeplinks/links.html @@ -0,0 +1,80 @@ + + + + + links + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

links

+
+

Returns the links.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html new file mode 100644 index 0000000..375949e --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html @@ -0,0 +1,134 @@ + + + + + AUTO_INSTALL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

AUTO_INSTALL

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/-n-o_-i-n-s-t-a-l-l/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/-n-o_-i-n-s-t-a-l-l/index.html new file mode 100644 index 0000000..1936944 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/-n-o_-i-n-s-t-a-l-l/index.html @@ -0,0 +1,134 @@ + + + + + NO_INSTALL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

NO_INSTALL

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html new file mode 100644 index 0000000..deeba24 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html @@ -0,0 +1,134 @@ + + + + + PROMOTE_INSTALL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

PROMOTE_INSTALL

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/index.html new file mode 100644 index 0000000..8073051 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/index.html @@ -0,0 +1,217 @@ + + + + + InstallType + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

InstallType

+

Defines the installation types.

Since

2.0

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/type.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/type.html new file mode 100644 index 0000000..d573c1f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/type.html @@ -0,0 +1,80 @@ + + + + + type + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

type

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/value-of.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/value-of.html new file mode 100644 index 0000000..6aebe18 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/value-of.html @@ -0,0 +1,80 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

valueOf

+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/values.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/values.html new file mode 100644 index 0000000..bb0a71d --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-install-type/values.html @@ -0,0 +1,80 @@ + + + + + values + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/-a-n-d-r-o-i-d/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/-a-n-d-r-o-i-d/index.html new file mode 100644 index 0000000..74910da --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/-a-n-d-r-o-i-d/index.html @@ -0,0 +1,134 @@ + + + + + ANDROID + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

ANDROID

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/-i-o-s/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/-i-o-s/index.html new file mode 100644 index 0000000..1a97c5a --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/-i-o-s/index.html @@ -0,0 +1,134 @@ + + + + + IOS + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

IOS

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/index.html new file mode 100644 index 0000000..38c77f2 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/index.html @@ -0,0 +1,202 @@ + + + + + Os + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Os

+
enum Os : Enum<Os> (source)

Defines the operating system types.

Since

2.0

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun valueOf(value: String): Os

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun values(): Array<Os>

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/type.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/type.html new file mode 100644 index 0000000..35bd77e --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/type.html @@ -0,0 +1,80 @@ + + + + + type + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

type

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/value-of.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/value-of.html new file mode 100644 index 0000000..a46165e --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/value-of.html @@ -0,0 +1,80 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

valueOf

+
+
fun valueOf(value: String): Os(source)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/values.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/values.html new file mode 100644 index 0000000..8c8223c --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-os/values.html @@ -0,0 +1,80 @@ + + + + + values + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/-update-deeplinks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/-update-deeplinks.html new file mode 100644 index 0000000..a423514 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/-update-deeplinks.html @@ -0,0 +1,80 @@ + + + + + UpdateDeeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

UpdateDeeplinks

+
+
constructor()(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/app_guid.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/app_guid.html new file mode 100644 index 0000000..12e8f46 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/app_guid.html @@ -0,0 +1,80 @@ + + + + + app_guid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

app_guid

+
+
fun app_guid(app_guid: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/app_uri_path.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/app_uri_path.html new file mode 100644 index 0000000..07d5cdc --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/app_uri_path.html @@ -0,0 +1,80 @@ + + + + + app_uri_path + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

app_uri_path

+
+
fun app_uri_path(app_uri_path: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/bitlink.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/bitlink.html new file mode 100644 index 0000000..c165f77 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/bitlink.html @@ -0,0 +1,80 @@ + + + + + bitlink + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

bitlink

+
+
fun bitlink(bitlink: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/brand_guid.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/brand_guid.html new file mode 100644 index 0000000..828f6b2 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/brand_guid.html @@ -0,0 +1,80 @@ + + + + + brand_guid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

brand_guid

+
+
fun brand_guid(brand_guid: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/created.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/created.html new file mode 100644 index 0000000..215b8ee --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/created.html @@ -0,0 +1,80 @@ + + + + + created + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

created

+
+
fun created(created: String)(source)

ISO timestamp.


+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/guid.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/guid.html new file mode 100644 index 0000000..faf0449 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/guid.html @@ -0,0 +1,80 @@ + + + + + guid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

guid

+
+
fun guid(guid: String)(source)
fun guid(): String?(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/index.html new file mode 100644 index 0000000..3fea2a2 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/index.html @@ -0,0 +1,288 @@ + + + + + UpdateDeeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

UpdateDeeplinks

+

Configures deeplinks used when updating Bitlinks.

See the Bit.ly API for more information.

Since

2.0

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor()
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun app_guid(app_guid: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun app_uri_path(app_uri_path: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun bitlink(): String?
fun bitlink(bitlink: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun brand_guid(brand_guid: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun created(): String?

fun created(created: ZonedDateTime)
fun created(created: String)

ISO timestamp.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun guid(): String?
fun guid(guid: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun install_url(install_url: String)
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns true if there are defined links.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns the links.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

fun modified(modified: ZonedDateTime)
fun modified(modified: String)

ISO timestamp.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun os(): Os?
fun os(os: Os)
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/install_type.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/install_type.html new file mode 100644 index 0000000..ff99ad2 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/install_type.html @@ -0,0 +1,80 @@ + + + + + install_type + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

install_type

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/install_url.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/install_url.html new file mode 100644 index 0000000..25119c5 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/install_url.html @@ -0,0 +1,80 @@ + + + + + install_url + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

install_url

+
+
fun install_url(install_url: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/is-not-empty.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/is-not-empty.html new file mode 100644 index 0000000..b1d15f8 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/is-not-empty.html @@ -0,0 +1,80 @@ + + + + + isNotEmpty + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isNotEmpty

+
+

Returns true if there are defined links.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/links.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/links.html new file mode 100644 index 0000000..9b829a4 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/links.html @@ -0,0 +1,80 @@ + + + + + links + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

links

+
+

Returns the links.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/modified.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/modified.html new file mode 100644 index 0000000..11a96b4 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/modified.html @@ -0,0 +1,80 @@ + + + + + modified + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

modified

+
+
fun modified(modified: String)(source)
fun modified(modified: ZonedDateTime)(source)

ISO timestamp.


+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/os.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/os.html new file mode 100644 index 0000000..2d4a6e8 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/-update-deeplinks/os.html @@ -0,0 +1,80 @@ + + + + + os + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

os

+
+
fun os(os: Os)(source)
fun os(): Os?(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/index.html new file mode 100644 index 0000000..5db556d --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly.deeplinks/index.html @@ -0,0 +1,148 @@ + + + + + net.thauvin.erik.bitly.deeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Package-level declarations

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Configures deeplinks used when creating Bitlinks.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Defines the installation types.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
enum Os : Enum<Os>

Defines the operating system types.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Configures deeplinks used when updating Bitlinks.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html new file mode 100644 index 0000000..a348a45 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html @@ -0,0 +1,80 @@ + + + + + Bitlinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Bitlinks

+
+
constructor(accessToken: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html new file mode 100644 index 0000000..a54e966 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html @@ -0,0 +1,80 @@ + + + + + clicks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

clicks

+
+
fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String(source)

Returns the click counts for a specified Bitlink.

See the Bitly API for more information.

Return

The click counts.

Parameters

bitlink

A Bitlink made of the domain and hash.

units

An integer representing the time units to query data for. Pass -1 to return all units available.

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.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/create.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/create.html new file mode 100644 index 0000000..988c9ee --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/create.html @@ -0,0 +1,80 @@ + + + + + create + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

create

+
+

Converts a long url to a Bitlink and sets additional parameters.

See the Bit.ly API for more information.

Return

The shortened URL or an empty string on error.

Parameters

config

The parameters' configuration.


fun create(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, title: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: CreateDeeplinks = CreateDeeplinks(), toJson: Boolean = false): String(source)

Converts a long url to a Bitlink and sets additional parameters.

See the Bit.ly API for more information.

Return

The shortened URL or an empty string on error.

Parameters

long_url

The long URL.

domain

A branded short domain or bit.ly by default.

group_guid

A GUID for a Bitly group.

toJson

Returns the full JSON response if true.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/expand.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/expand.html new file mode 100644 index 0000000..bb05e3a --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/expand.html @@ -0,0 +1,80 @@ + + + + + expand + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

expand

+
+
fun expand(bitlink_id: String, toJson: Boolean = false): String(source)

Expands a Bitlink.

See the Bit.ly API for more information.

Return

The long URL or an empty string on error.

Parameters

bitlink_id

The bitlink ID.

toJson

Returns the full JSON response if true.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/index.html new file mode 100644 index 0000000..ecfaf55 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/index.html @@ -0,0 +1,217 @@ + + + + + Bitlinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Bitlinks

+
open class Bitlinks(accessToken: String)(source)

Provides functions to create and manage Bitlinks.

See the Bitly API for more information.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(accessToken: String)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

The last API call response.

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String

Returns the click counts for a specified Bitlink.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun create(config: CreateConfig): String
fun create(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, title: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: CreateDeeplinks = CreateDeeplinks(), toJson: Boolean = false): String

Converts a long url to a Bitlink and sets additional parameters.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun expand(bitlink_id: String, toJson: Boolean = false): String

Expands a Bitlink.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun shorten(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, toJson: Boolean = false): String

Shortens a long URL.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun update(config: UpdateConfig): String
fun update(bitlink: String, title: String = Constants.EMPTY, archived: Boolean = false, tags: Array<String> = emptyArray(), deeplinks: UpdateDeeplinks = UpdateDeeplinks(), toJson: Boolean = false): String

Updates parameters in the specified Bitlink.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun updateCustom(custom_bitlink: String, bitlink_id: String, toJson: Boolean = false): String

Move a keyword (or custom back-half) to a different Bitlink (domains must match).

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..873b81e --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/last-call-response.html @@ -0,0 +1,80 @@ + + + + + lastCallResponse + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

lastCallResponse

+
+

The last API call response.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html new file mode 100644 index 0000000..5719b9f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html @@ -0,0 +1,80 @@ + + + + + shorten + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

shorten

+
+
fun shorten(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, toJson: Boolean = false): String(source)

Shortens a long URL.

See the Bit.ly API for more information.

Return

The short URL or the long_url on error.

Parameters

long_url

The long URL.

domain

A branded short domain or bit.ly by default.

group_guid

A GUID for a Bitly group.

toJson

Returns the full JSON response if true.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/update-custom.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/update-custom.html new file mode 100644 index 0000000..bd2b683 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/update-custom.html @@ -0,0 +1,80 @@ + + + + + updateCustom + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

updateCustom

+
+
fun updateCustom(custom_bitlink: String, bitlink_id: String, toJson: Boolean = false): String(source)

Move a keyword (or custom back-half) to a different Bitlink (domains must match).

See the Bit.ly API for more information.

Return

Constants.TRUE if the update was successful, Constants.FALSE otherwise.

Parameters

custom_bitlink

A Custom Bitlink made of the domain and keyword.

toJson

Returns the full JSON response if true.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/update.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/update.html new file mode 100644 index 0000000..d6c63a1 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/update.html @@ -0,0 +1,80 @@ + + + + + update + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

update

+
+

Updates parameters in the specified Bitlink.

See the Bit.ly API for more information.

Return

Constants.TRUE if the update was successful, Constants.FALSE otherwise.

Parameters

config

The parameters' configuration.


fun update(bitlink: String, title: String = Constants.EMPTY, archived: Boolean = false, tags: Array<String> = emptyArray(), deeplinks: UpdateDeeplinks = UpdateDeeplinks(), toJson: Boolean = false): String(source)

Updates parameters in the specified Bitlink.

See the Bit.ly API for more information.

Return

Constants.TRUE if the update was successful, Constants.FALSE otherwise.

Parameters

bitlink

A Bitlink made of the domain and hash.

toJson

Returns the full JSON response if true.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/-bitly.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/-bitly.html new file mode 100644 index 0000000..baf7fc4 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/-bitly.html @@ -0,0 +1,80 @@ + + + + + Bitly + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Bitly

+
+
constructor(accessToken: String)(source)

Creates a new instance using an API Access Token.

Parameters

accessToken

The API access token.


constructor(properties: Properties, key: String = Constants.ENV_ACCESS_TOKEN)(source)

Creates a new instance using a properties and property key.

Parameters

properties

The properties containing the API Access Token.

key

The property key containing the API Access Token.


constructor(propertiesFilePath: Path, key: String = Constants.ENV_ACCESS_TOKEN)(source)

Creates a new instance using a properties file path and property key.

Parameters

propertiesFilePath

The file path of the properties containing the API Access Token.

key

The property key containing the API Access Token.


constructor(propertiesFile: File, key: String = Constants.ENV_ACCESS_TOKEN)(source)

Creates a new instance using a properties file and property key.

Parameters

propertiesFile

The properties file containing the API Access Token.

key

The property key containing the API Access Token.


constructor()(source)

Creates new instance.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..2a3e1a7 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/access-token.html @@ -0,0 +1,80 @@ + + + + + accessToken + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

accessToken

+
+

The API access token.

See Generic Access Token or Authentication.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html new file mode 100644 index 0000000..da7e11e --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html @@ -0,0 +1,80 @@ + + + + + bitlinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

bitlinks

+
+

Returns a new Bitlinks instance.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/call.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/call.html new file mode 100644 index 0000000..4abafae --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/call.html @@ -0,0 +1,80 @@ + + + + + call + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

call

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

Executes an API call.

Return

A CallResponse object.

Parameters

endPoint

The REST endpoint path. (e.g. shorten, expand, etc.)

params

The request parameters key/value map.

method

The submission Method.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/index.html new file mode 100644 index 0000000..53bd2ab --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-bitly/index.html @@ -0,0 +1,157 @@ + + + + + Bitly + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Bitly

+
open class Bitly(source)

Provides access to the Bitly API v4.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(accessToken: String)

Creates a new instance using an API Access Token.

constructor(properties: Properties, key: String = Constants.ENV_ACCESS_TOKEN)

Creates a new instance using a properties and property key.

constructor(propertiesFilePath: Path, key: String = Constants.ENV_ACCESS_TOKEN)

Creates a new instance using a properties file path and property key.

constructor(propertiesFile: File, key: String = Constants.ENV_ACCESS_TOKEN)

Creates a new instance using a properties file and property key.

constructor()

Creates new instance.

+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

The API access token.

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns a new Bitlinks instance.

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

Executes an API call.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..6e4321c --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/-call-response.html @@ -0,0 +1,80 @@ + + + + + CallResponse + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CallResponse

+
+
constructor(body: String = Constants.EMPTY_JSON, message: String = "", description: String = "", statusCode: Int = -1)(source)

Parameters

body

The response body.

message

Bitly error message, if any.

description

Bitly error description, if any.

statusCode

HTTP status code,

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..3a93770 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/body.html @@ -0,0 +1,80 @@ + + + + + body + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

body

+
+

Parameters

body

The response body.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..4f280b9 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/description.html @@ -0,0 +1,80 @@ + + + + + description + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

description

+
+

Parameters

description

Bitly error description, if any.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..2ade260 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/index.html @@ -0,0 +1,348 @@ + + + + + CallResponse + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CallResponse

+
data class CallResponse(val body: String = Constants.EMPTY_JSON, val message: String = "", val description: String = "", val statusCode: Int = -1)(source)

Provides a data class to hold the JSON response.

Parameters

body

The response body.

message

Bitly error message, if any.

description

Bitly error description, if any.

statusCode

HTTP status code,

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(body: String = Constants.EMPTY_JSON, message: String = "", description: String = "", statusCode: Int = -1)
+
+
+
+
+
+
+
+

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
+
+
+ +
+
+
+ +
+
+
+ + +
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
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..e2c6fa6 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-bad-request.html @@ -0,0 +1,80 @@ + + + + + isBadRequest + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isBadRequest

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..b14c680 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-created.html @@ -0,0 +1,80 @@ + + + + + isCreated + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isCreated

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..15cfd45 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-expectation-failed.html @@ -0,0 +1,80 @@ + + + + + isExpectationFailed + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isExpectationFailed

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..d3260fa --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-forbidden.html @@ -0,0 +1,80 @@ + + + + + isForbidden + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isForbidden

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..74ed927 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-gone.html @@ -0,0 +1,80 @@ + + + + + isGone + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isGone

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..a703e63 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-internal-error.html @@ -0,0 +1,80 @@ + + + + + isInternalError + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isInternalError

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..292b8ec --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-not-found.html @@ -0,0 +1,80 @@ + + + + + isNotFound + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isNotFound

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..babd215 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-successful.html @@ -0,0 +1,80 @@ + + + + + isSuccessful + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isSuccessful

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..8845027 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-temporarily-unavailable.html @@ -0,0 +1,80 @@ + + + + + isTemporarilyUnavailable + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isTemporarilyUnavailable

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..59d3e44 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-too-many-requests.html @@ -0,0 +1,80 @@ + + + + + isTooManyRequests + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isTooManyRequests

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..4b1e688 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-unprocessable-entity.html @@ -0,0 +1,80 @@ + + + + + isUnprocessableEntity + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isUnprocessableEntity

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..924436f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-upgrade-required.html @@ -0,0 +1,80 @@ + + + + + isUpgradeRequired + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isUpgradeRequired

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..32af462 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/message.html @@ -0,0 +1,80 @@ + + + + + message + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

message

+
+

Parameters

message

Bitly error message, if any.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..aa57bf6 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-call-response/status-code.html @@ -0,0 +1,80 @@ + + + + + statusCode + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

statusCode

+
+

Parameters

statusCode

HTTP status code,

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..51de55d --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html @@ -0,0 +1,80 @@ + + + + + API_BASE_URL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

API_BASE_URL

+
+

The Bitly API base URL.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..b58ef11 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html @@ -0,0 +1,80 @@ + + + + + EMPTY + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

EMPTY

+
+
const val EMPTY: String(source)

Empty String.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..9f048e7 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html @@ -0,0 +1,80 @@ + + + + + EMPTY_JSON + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

EMPTY_JSON

+
+

Empty JSON Object.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..8cb01a3 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html @@ -0,0 +1,80 @@ + + + + + ENV_ACCESS_TOKEN + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

ENV_ACCESS_TOKEN

+
+

The API access token environment variable.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..f95955f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.html @@ -0,0 +1,80 @@ + + + + + FALSE + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

FALSE

+
+
const val FALSE: String(source)

False

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/-i-s-o_-t-i-m-e-s-t-a-m-p.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/-i-s-o_-t-i-m-e-s-t-a-m-p.html new file mode 100644 index 0000000..4edb7fb --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/-i-s-o_-t-i-m-e-s-t-a-m-p.html @@ -0,0 +1,80 @@ + + + + + ISO_TIMESTAMP + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

ISO_TIMESTAMP

+
+

ISO Timestamp format

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..44cefa2 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/-t-r-u-e.html @@ -0,0 +1,80 @@ + + + + + TRUE + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

TRUE

+
+
const val TRUE: String(source)

True

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/index.html new file mode 100644 index 0000000..053baf4 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-constants/index.html @@ -0,0 +1,194 @@ + + + + + Constants + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Constants

+

Provides the constants for this package.

+
+
+
+
+
+

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
+
+
+
+

ISO Timestamp format

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

True

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..fa1608f --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html @@ -0,0 +1,119 @@ + + + + + DELETE + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

DELETE

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..65f65e6 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html @@ -0,0 +1,119 @@ + + + + + GET + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

GET

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..a1b0d39 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html @@ -0,0 +1,119 @@ + + + + + PATCH + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

PATCH

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..e169eda --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html @@ -0,0 +1,119 @@ + + + + + POST + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

POST

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/index.html new file mode 100644 index 0000000..bcabaac --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/index.html @@ -0,0 +1,217 @@ + + + + + Methods + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Methods

+

Provides HTTP methods definitions.

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun valueOf(value: String): Methods

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..2767887 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/value-of.html @@ -0,0 +1,80 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

valueOf

+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/values.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/values.html new file mode 100644 index 0000000..4e2630c --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-methods/values.html @@ -0,0 +1,80 @@ + + + + + values + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..f31d287 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html @@ -0,0 +1,119 @@ + + + + + DAY + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

DAY

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..39c1d18 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html @@ -0,0 +1,119 @@ + + + + + HOUR + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

HOUR

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..e476859 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html @@ -0,0 +1,119 @@ + + + + + MINUTE + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

MINUTE

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..e92207d --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html @@ -0,0 +1,119 @@ + + + + + MONTH + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

MONTH

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..2da3a2e --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html @@ -0,0 +1,119 @@ + + + + + WEEK + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

WEEK

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/index.html new file mode 100644 index 0000000..1957f3b --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/index.html @@ -0,0 +1,232 @@ + + + + + Units + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Units

+

Provides units of time definitions.

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
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
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun valueOf(value: String): Units

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..8a29602 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/value-of.html @@ -0,0 +1,80 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

valueOf

+
+
fun valueOf(value: String): Units(source)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/values.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/values.html new file mode 100644 index 0000000..37d65dc --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-units/values.html @@ -0,0 +1,80 @@ + + + + + values + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/call.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/call.html new file mode 100644 index 0000000..0b97aeb --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/call.html @@ -0,0 +1,80 @@ + + + + + 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 URI. (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/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/index.html new file mode 100644 index 0000000..ee9dd84 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/index.html @@ -0,0 +1,183 @@ + + + + + Utils + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Utils

+
object Utils(source)

Provides useful generic functions.

+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

The logger instance.

+
+
+
+
+
+
+
+

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
+
+
+
+

Determines if Level.SEVERE logging is 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.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..4c1e993 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/is-severe-loggable.html @@ -0,0 +1,80 @@ + + + + + isSevereLoggable + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isSevereLoggable

+
+

Determines if Level.SEVERE logging is enabled.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..8fb79ff --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/is-valid-url.html @@ -0,0 +1,80 @@ + + + + + isValidUrl + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isValidUrl

+
+

Validates a URL.

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/logger.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/logger.html new file mode 100644 index 0000000..67810da --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/logger.html @@ -0,0 +1,80 @@ + + + + + logger + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

logger

+
+

The logger instance.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..4236638 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/remove-http.html @@ -0,0 +1,80 @@ + + + + + removeHttp + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

removeHttp

+
+

Removes http(s) scheme from string.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..b8fdd73 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/-utils/to-end-point.html @@ -0,0 +1,80 @@ + + + + + toEndPoint + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

toEndPoint

+
+

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

+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/net.thauvin.erik.bitly/index.html b/docs/-bitly -shorten/net.thauvin.erik.bitly/index.html new file mode 100644 index 0000000..1dc11a8 --- /dev/null +++ b/docs/-bitly -shorten/net.thauvin.erik.bitly/index.html @@ -0,0 +1,194 @@ + + + + + net.thauvin.erik.bitly + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Package-level declarations

+

Provides the classes necessary to access the Bitly API v4.

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
open class Bitlinks(accessToken: String)

Provides functions to create and manage Bitlinks.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open class Bitly

Provides access to the Bitly API v4.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
data class CallResponse(val body: String = Constants.EMPTY_JSON, val message: String = "", val description: String = "", val statusCode: Int = -1)

Provides a data class to hold the JSON response.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Constants

Provides the constants for this package.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Provides HTTP methods definitions.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
enum Units : Enum<Units>

Provides units of time definitions.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Utils

Provides useful generic functions.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly -shorten/package-list b/docs/-bitly -shorten/package-list new file mode 100644 index 0000000..13c9038 --- /dev/null +++ b/docs/-bitly -shorten/package-list @@ -0,0 +1,181 @@ +$dokka.format:html-v1 +$dokka.linkExtension:html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums////PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/InstallType.AUTO_INSTALL///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/InstallType.NO_INSTALL///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-n-o_-i-n-s-t-a-l-l/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/InstallType.PROMOTE_INSTALL///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/InstallType///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/InstallType/type/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/type.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/InstallType/valueOf/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/value-of.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/InstallType/values/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/values.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/Os.ANDROID///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/-a-n-d-r-o-i-d/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/Os.IOS///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/-i-o-s/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/Os///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/Os/type/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/type.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/Os/valueOf/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/value-of.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks.enums/Os/values/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/values.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks////PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/CreateDeeplinks/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/-create-deeplinks.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/app_id/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_id.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/app_id/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_id.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/app_uri_path/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_uri_path.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/app_uri_path/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_uri_path.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/install_type/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_type.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/install_type/#net.thauvin.erik.bitly.config.deeplinks.enums.InstallType/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_type.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/install_url/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_url.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/install_url/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_url.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/isNotEmpty/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/is-not-empty.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/CreateDeeplinks/links/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/links.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/index.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/UpdateDeeplinks/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/-update-deeplinks.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/app_guid/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_guid.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/app_guid/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_guid.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/app_uri_path/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_uri_path.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/app_uri_path/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_uri_path.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/bitlink/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/bitlink.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/bitlink/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/bitlink.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/brand_guid/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/brand_guid.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/brand_guid/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/brand_guid.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/created/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/created.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/created/#java.time.ZonedDateTime/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/created.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/created/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/created.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/guid/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/guid.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/guid/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/guid.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/install_type/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_type.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/install_type/#net.thauvin.erik.bitly.config.deeplinks.enums.InstallType/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_type.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/install_url/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_url.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/install_url/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_url.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/isNotEmpty/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/is-not-empty.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/links/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/links.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/modified/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/modified.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/modified/#java.time.ZonedDateTime/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/modified.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/modified/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/modified.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/os/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/os.html +$dokka.location:net.thauvin.erik.bitly.config.deeplinks/UpdateDeeplinks/os/#net.thauvin.erik.bitly.config.deeplinks.enums.Os/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/os.html +$dokka.location:net.thauvin.erik.bitly.config////PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/index.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/Builder/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/-builder.html +$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/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/deeplinks/#net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/domain/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.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/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/group_guid/#/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/long_url/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long_url.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/tags/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.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/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.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 +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/toJson/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/toJson/#kotlin.Boolean/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/index.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/CreateConfig/#kotlin.String#kotlin.String#kotlin.String#kotlin.String#kotlin.Array[kotlin.String]#net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks#kotlin.Boolean/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-create-config.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/CreateConfig/#net.thauvin.erik.bitly.config.CreateConfig.Builder/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-create-config.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/deeplinks/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/deeplinks.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/domain/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/domain.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/group_guid/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/group_guid.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/long_url/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/long_url.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/tags/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/tags.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/title/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/title.html +$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/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/deeplinks/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deeplinks.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig.Builder/deeplinks/#net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deeplinks.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/UpdateConfig/#kotlin.String#kotlin.String#kotlin.Boolean#kotlin.Array[kotlin.String]#net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks#kotlin.Boolean/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-update-config.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/UpdateConfig/#net.thauvin.erik.bitly.config.UpdateConfig.Builder/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-update-config.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/archived/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/archived.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/bitlink/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/deeplinks/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/deeplinks.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/tags/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/tags.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/title/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/title.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/toJson/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/to-json.html +$dokka.location:net.thauvin.erik.bitly////PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/index.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/index.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/Bitlinks/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/clicks/#kotlin.String#net.thauvin.erik.bitly.Units#kotlin.Int#kotlin.String#kotlin.Boolean/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/create/#kotlin.String#kotlin.String#kotlin.String#kotlin.String#kotlin.Array[kotlin.String]#net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks#kotlin.Boolean/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/create.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/create/#net.thauvin.erik.bitly.config.CreateConfig/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/create.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/expand/#kotlin.String#kotlin.Boolean/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/expand.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/lastCallResponse/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/last-call-response.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/shorten/#kotlin.String#kotlin.String#kotlin.String#kotlin.Boolean/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/update/#kotlin.String#kotlin.String#kotlin.Boolean#kotlin.Array[kotlin.String]#net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks#kotlin.Boolean/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/update.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/update/#net.thauvin.erik.bitly.config.UpdateConfig/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/update.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/updateCustom/#kotlin.String#kotlin.String#kotlin.Boolean/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/update-custom.html +$dokka.location:net.thauvin.erik.bitly/Bitly///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitly/index.html +$dokka.location:net.thauvin.erik.bitly/Bitly/Bitly/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +$dokka.location:net.thauvin.erik.bitly/Bitly/Bitly/#java.io.File#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +$dokka.location:net.thauvin.erik.bitly/Bitly/Bitly/#java.nio.file.Path#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +$dokka.location:net.thauvin.erik.bitly/Bitly/Bitly/#java.util.Properties#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +$dokka.location:net.thauvin.erik.bitly/Bitly/Bitly/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +$dokka.location:net.thauvin.erik.bitly/Bitly/accessToken/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitly/access-token.html +$dokka.location:net.thauvin.erik.bitly/Bitly/bitlinks/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html +$dokka.location:net.thauvin.erik.bitly/Bitly/call/#kotlin.String#kotlin.collections.Map[kotlin.String,kotlin.Any]#net.thauvin.erik.bitly.Methods/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-bitly/call.html +$dokka.location:net.thauvin.erik.bitly/CallResponse///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/index.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/CallResponse/#kotlin.String#kotlin.String#kotlin.String#kotlin.Int/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/-call-response.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/body/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/body.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/description/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/description.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isBadRequest/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-bad-request.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isCreated/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-created.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isExpectationFailed/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-expectation-failed.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isForbidden/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-forbidden.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isGone/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-gone.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isInternalError/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-internal-error.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isNotFound/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-not-found.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isSuccessful/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-successful.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isTemporarilyUnavailable/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-temporarily-unavailable.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isTooManyRequests/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-too-many-requests.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isUnprocessableEntity/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-unprocessable-entity.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isUpgradeRequired/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/is-upgrade-required.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/message/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/message.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/statusCode/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-call-response/status-code.html +$dokka.location:net.thauvin.erik.bitly/Constants///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-constants/index.html +$dokka.location:net.thauvin.erik.bitly/Constants/API_BASE_URL/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html +$dokka.location:net.thauvin.erik.bitly/Constants/EMPTY/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html +$dokka.location:net.thauvin.erik.bitly/Constants/EMPTY_JSON/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html +$dokka.location:net.thauvin.erik.bitly/Constants/ENV_ACCESS_TOKEN/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html +$dokka.location:net.thauvin.erik.bitly/Constants/FALSE/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.html +$dokka.location:net.thauvin.erik.bitly/Constants/ISO_TIMESTAMP/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-constants/-i-s-o_-t-i-m-e-s-t-a-m-p.html +$dokka.location:net.thauvin.erik.bitly/Constants/TRUE/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-constants/-t-r-u-e.html +$dokka.location:net.thauvin.erik.bitly/Methods.DELETE///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html +$dokka.location:net.thauvin.erik.bitly/Methods.GET///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html +$dokka.location:net.thauvin.erik.bitly/Methods.PATCH///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html +$dokka.location:net.thauvin.erik.bitly/Methods.POST///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html +$dokka.location:net.thauvin.erik.bitly/Methods///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-methods/index.html +$dokka.location:net.thauvin.erik.bitly/Methods/valueOf/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-methods/value-of.html +$dokka.location:net.thauvin.erik.bitly/Methods/values/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-methods/values.html +$dokka.location:net.thauvin.erik.bitly/Units.DAY///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html +$dokka.location:net.thauvin.erik.bitly/Units.HOUR///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html +$dokka.location:net.thauvin.erik.bitly/Units.MINUTE///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html +$dokka.location:net.thauvin.erik.bitly/Units.MONTH///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html +$dokka.location:net.thauvin.erik.bitly/Units.WEEK///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly -shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html +$dokka.location:net.thauvin.erik.bitly/Units///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-units/index.html +$dokka.location:net.thauvin.erik.bitly/Units/valueOf/#kotlin.String/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-units/value-of.html +$dokka.location:net.thauvin.erik.bitly/Units/values/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-units/values.html +$dokka.location:net.thauvin.erik.bitly/Utils///PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-utils/index.html +$dokka.location:net.thauvin.erik.bitly/Utils/call/#kotlin.String#kotlin.String#kotlin.collections.Map[kotlin.String,kotlin.Any]#net.thauvin.erik.bitly.Methods/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-utils/call.html +$dokka.location:net.thauvin.erik.bitly/Utils/isSevereLoggable/java.util.logging.Logger#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-utils/is-severe-loggable.html +$dokka.location:net.thauvin.erik.bitly/Utils/isValidUrl/kotlin.String#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-utils/is-valid-url.html +$dokka.location:net.thauvin.erik.bitly/Utils/logger/#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-utils/logger.html +$dokka.location:net.thauvin.erik.bitly/Utils/removeHttp/kotlin.String#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-utils/remove-http.html +$dokka.location:net.thauvin.erik.bitly/Utils/toEndPoint/kotlin.String#/PointingToDeclaration/-bitly -shorten/net.thauvin.erik.bitly/-utils/to-end-point.html +net.thauvin.erik.bitly +net.thauvin.erik.bitly.config +net.thauvin.erik.bitly.config.deeplinks +net.thauvin.erik.bitly.config.deeplinks.enums + 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 new file mode 100644 index 0000000..375aeb5 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/-builder.html @@ -0,0 +1,80 @@ + + + + + Builder + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Builder

+
+
constructor(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: Array<Map<String, String>> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)(source)
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..153b52d --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/build.html @@ -0,0 +1,80 @@ + + + + + build + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

build

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..0ffdeaf --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html @@ -0,0 +1,80 @@ + + + + + deeplinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deeplinks

+
+
fun deeplinks(deeplinks: Array<Map<String, String>>): <Error class: unknown class>(source)
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..3a53dfb --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.html @@ -0,0 +1,80 @@ + + + + + domain + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

domain

+
+
fun domain(domain: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html new file mode 100644 index 0000000..ff1e0db --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html @@ -0,0 +1,80 @@ + + + + + groupGuid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

groupGuid

+
+
fun groupGuid(group_guid: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html new file mode 100644 index 0000000..04dd916 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html @@ -0,0 +1,228 @@ + + + + + Builder + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Builder

+
data class Builder(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: Array<Map<String, String>> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)(source)

Configures the creation parameters of a Bitlink.

See the Bit.ly API for more information.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: Array<Map<String, String>> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun deeplinks(deeplinks: Array<Map<String, String>>): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun domain(domain: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun groupGuid(group_guid: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun longUrl(long_url: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun tags(tags: Array<String>): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun title(title: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun toJson(toJson: Boolean): <Error class: unknown class>
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..cb9230b --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long-url.html @@ -0,0 +1,80 @@ + + + + + longUrl + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

longUrl

+
+
fun longUrl(long_url: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..2e20b29 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.html @@ -0,0 +1,80 @@ + + + + + tags + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

tags

+
+
fun tags(tags: Array<String>): <Error class: unknown class>(source)
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..a239edf --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.html @@ -0,0 +1,80 @@ + + + + + title + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

title

+
+
fun title(title: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..9b10023 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html @@ -0,0 +1,80 @@ + + + + + toJson + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

toJson

+
+
fun toJson(toJson: Boolean): <Error class: unknown class>(source)
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..ab80a1e --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/deep-links.html @@ -0,0 +1,80 @@ + + + + + deepLinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deepLinks

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..144ebec --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/domain.html @@ -0,0 +1,80 @@ + + + + + domain + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

domain

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..24d9685 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/group_guid.html @@ -0,0 +1,80 @@ + + + + + group_guid + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

group_guid

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..5fd550f --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/index.html @@ -0,0 +1,213 @@ + + + + + CreateConfig + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CreateConfig

+

Provides a builder to create a Bitlink.

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
data class Builder(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: Array<Map<String, String>> = emptyArray(), long_url: String = Constants.EMPTY, toJson: Boolean = false)

Configures the creation parameters of a Bitlink.

+
+
+
+
+
+
+
+

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
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..cce8395 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/long_url.html @@ -0,0 +1,80 @@ + + + + + long_url + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

long_url

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..c1cee16 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/tags.html @@ -0,0 +1,80 @@ + + + + + tags + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

tags

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..6901ff7 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/title.html @@ -0,0 +1,80 @@ + + + + + title + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

title

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..015751e --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/to-json.html @@ -0,0 +1,80 @@ + + + + + toJson + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

toJson

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..9520047 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/-builder.html @@ -0,0 +1,80 @@ + + + + + Builder + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Builder

+
+
constructor(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.config/-update-config/-builder/archived.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html new file mode 100644 index 0000000..53fc6fe --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/archived.html @@ -0,0 +1,80 @@ + + + + + archived + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

archived

+
+
fun archived(archived: Boolean): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html new file mode 100644 index 0000000..0ba31b6 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html @@ -0,0 +1,80 @@ + + + + + bitlink + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

bitlink

+
+
fun bitlink(bitlink: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html new file mode 100644 index 0000000..defec9c --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html @@ -0,0 +1,80 @@ + + + + + build + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

build

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..e02a4e3 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/client-id.html @@ -0,0 +1,80 @@ + + + + + clientId + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

clientId

+
+
fun clientId(clientId: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html new file mode 100644 index 0000000..7a28cc5 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html @@ -0,0 +1,80 @@ + + + + + createdAt + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

createdAt

+
+
fun createdAt(createdAt: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html new file mode 100644 index 0000000..e2edf69 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html @@ -0,0 +1,80 @@ + + + + + createdBy + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

createdBy

+
+
fun createdBy(createdBy: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html new file mode 100644 index 0000000..5d8bff5 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html @@ -0,0 +1,80 @@ + + + + + customBitlinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

customBitlinks

+
+
fun customBitlinks(customBitlinks: Array<String>): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html new file mode 100644 index 0000000..69c6ee4 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html @@ -0,0 +1,80 @@ + + + + + deepLinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deepLinks

+
+
fun deepLinks(deepLinks: Array<Map<String, String>>): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html new file mode 100644 index 0000000..12dd212 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html @@ -0,0 +1,80 @@ + + + + + id + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

id

+
+
fun id(id: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html new file mode 100644 index 0000000..ed0bcaf --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html @@ -0,0 +1,333 @@ + + + + + Builder + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Builder

+
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.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(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
+
+
+
+
fun archived(archived: Boolean): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun bitlink(bitlink: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun clientId(clientId: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun createdAt(createdAt: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun createdBy(createdBy: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun customBitlinks(customBitlinks: Array<String>): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun deepLinks(deepLinks: Array<Map<String, String>>): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun id(id: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun link(link: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun longUrl(longUrl: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun references(references: Map<String, String>): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun tags(tags: Array<String>): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun title(title: String): <Error class: unknown class>
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun toJson(toJson: Boolean): <Error class: unknown class>
+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..7156d97 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/link.html @@ -0,0 +1,80 @@ + + + + + link + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

link

+
+
fun link(link: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html new file mode 100644 index 0000000..af20bd1 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html @@ -0,0 +1,80 @@ + + + + + longUrl + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

longUrl

+
+
fun longUrl(longUrl: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html new file mode 100644 index 0000000..b729a9e --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html @@ -0,0 +1,80 @@ + + + + + references + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

references

+
+
fun references(references: Map<String, String>): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html new file mode 100644 index 0000000..197549a --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html @@ -0,0 +1,80 @@ + + + + + tags + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

tags

+
+
fun tags(tags: Array<String>): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html new file mode 100644 index 0000000..f97ebcd --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html @@ -0,0 +1,80 @@ + + + + + title + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

title

+
+
fun title(title: String): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html new file mode 100644 index 0000000..bdeff36 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html @@ -0,0 +1,80 @@ + + + + + toJson + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

toJson

+
+
fun toJson(toJson: Boolean): <Error class: unknown class>(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/archived.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/archived.html new file mode 100644 index 0000000..41f7d0d --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/archived.html @@ -0,0 +1,80 @@ + + + + + archived + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

archived

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..6d8e010 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html @@ -0,0 +1,80 @@ + + + + + bitlink + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

bitlink

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..e1fbc6c --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/client_id.html @@ -0,0 +1,80 @@ + + + + + client_id + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

client_id

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..283f988 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/created_at.html @@ -0,0 +1,80 @@ + + + + + created_at + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

created_at

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..0936bb5 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/created_by.html @@ -0,0 +1,80 @@ + + + + + created_by + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

created_by

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..d3faca5 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/custom_bitlinks.html @@ -0,0 +1,80 @@ + + + + + custom_bitlinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

custom_bitlinks

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..0190384 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/deep-links.html @@ -0,0 +1,80 @@ + + + + + deepLinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

deepLinks

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..6546a32 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/id.html @@ -0,0 +1,80 @@ + + + + + id + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

id

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..cc7b9f2 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/index.html @@ -0,0 +1,318 @@ + + + + + UpdateConfig + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

UpdateConfig

+

Provides a builder to update a Bitlink.

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
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.

+
+
+
+
+
+
+
+

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.config/-update-config/link.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/link.html new file mode 100644 index 0000000..8d38df7 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/link.html @@ -0,0 +1,80 @@ + + + + + link + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

link

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..e0e87ee --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/long_url.html @@ -0,0 +1,80 @@ + + + + + long_url + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

long_url

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..bc3294b --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/references.html @@ -0,0 +1,80 @@ + + + + + references + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

references

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..4b0df85 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/tags.html @@ -0,0 +1,80 @@ + + + + + tags + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

tags

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..173db68 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/title.html @@ -0,0 +1,80 @@ + + + + + title + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

title

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..ab48efe --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/to-json.html @@ -0,0 +1,80 @@ + + + + + toJson + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

toJson

+
+ +
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly.config/index.html b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/index.html new file mode 100644 index 0000000..438e714 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly.config/index.html @@ -0,0 +1,119 @@ + + + + + net.thauvin.erik.bitly.config + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Package-level declarations

+

Provides configuration builders.

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Provides a builder to create a Bitlink.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Provides a builder to update a Bitlink.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html new file mode 100644 index 0000000..8066dce --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html @@ -0,0 +1,80 @@ + + + + + Bitlinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Bitlinks

+
+
constructor(accessToken: String)(source)
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html new file mode 100644 index 0000000..daceb0a --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html @@ -0,0 +1,80 @@ + + + + + clicks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

clicks

+
+
fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, size: Int = 50, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String(source)

Returns the click counts for a specified Bitlink.

See the Bitly API for more information.

Return

The click counts.

Parameters

bitlink

A Bitlink made of the domain and hash.

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.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/create.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/create.html new file mode 100644 index 0000000..7fb86de --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/create.html @@ -0,0 +1,80 @@ + + + + + create + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

create

+
+

Converts a long url to a Bitlink and sets additional parameters.

See the Bit.ly API for more information.

Return

The shortened URL or an empty string on error.

Parameters

config

The parameters' configuration.


fun create(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: Array<Map<String, String>> = emptyArray(), long_url: String, toJson: Boolean = false): String(source)

Converts a long url to a Bitlink and sets additional parameters.

See the Bit.ly API for more information.

Return

The shortened URL or an empty string on error.

Parameters

domain

A branded short domain or bit.ly by default.

group_guid

A GUID for a Bitly group.

long_url

The long URL.

toJson

Returns the full JSON response if true.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/expand.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/expand.html new file mode 100644 index 0000000..6644ef9 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/expand.html @@ -0,0 +1,80 @@ + + + + + expand + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

expand

+
+
fun expand(bitlink_id: String, toJson: Boolean = false): String(source)

Expands a Bitlink.

See the Bit.ly API for more information.

Return

The long URL or an empty string on error.

Parameters

bitlink_id

The bitlink ID.

toJson

Returns the full JSON response if true.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/index.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/index.html new file mode 100644 index 0000000..b540407 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/index.html @@ -0,0 +1,202 @@ + + + + + Bitlinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Bitlinks

+
open class Bitlinks(accessToken: String)(source)

Provides functions to create and manage Bitlinks.

See the Bitly API for more information.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(accessToken: String)
+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

The last API call response.

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, size: Int = 50, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String

Returns the click counts for a specified Bitlink.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun create(config: CreateConfig): String
fun create(domain: String = Constants.EMPTY, title: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: Array<Map<String, String>> = emptyArray(), long_url: String, toJson: Boolean = false): String

Converts a long url to a Bitlink and sets additional parameters.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun expand(bitlink_id: String, toJson: Boolean = false): String

Expands a Bitlink.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun shorten(long_url: String, group_guid: String = Constants.EMPTY, domain: String = Constants.EMPTY, toJson: Boolean = false): String

Shortens a long URL.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun update(config: UpdateConfig): String
fun update(bitlink: String, 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): String

Updates parameters in the specified Bitlink.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..0a0493b --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/last-call-response.html @@ -0,0 +1,80 @@ + + + + + lastCallResponse + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

lastCallResponse

+
+

The last API call response.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html new file mode 100644 index 0000000..c834581 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html @@ -0,0 +1,80 @@ + + + + + shorten + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

shorten

+
+
fun shorten(long_url: String, group_guid: String = Constants.EMPTY, domain: String = Constants.EMPTY, toJson: Boolean = false): String(source)

Shortens a long URL.

See the Bit.ly API for more information.

Return

The short URL or the long_url on error.

Parameters

long_url

The long URL.

group_guid

A GUID for a Bitly group.

domain

A branded short domain or bit.ly by default.

toJson

Returns the full JSON response if true.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/update.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/update.html new file mode 100644 index 0000000..786d8e5 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/update.html @@ -0,0 +1,80 @@ + + + + + update + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

update

+
+

Updates parameters in the specified Bitlink.

See the Bit.ly API for more information.

Return

Constants.TRUE if the update was successful, Constants.FALSE otherwise.

Parameters

config

The parameters' configuration.


fun update(bitlink: String, 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): String(source)

Updates parameters in the specified Bitlink.

See the Bit.ly API for more information.

Return

Constants.TRUE if the update was successful, Constants.FALSE otherwise.

Parameters

bitlink

A Bitlink made of the domain and hash.

toJson

Returns the full JSON response if true.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/-bitly.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/-bitly.html new file mode 100644 index 0000000..2d13e66 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/-bitly.html @@ -0,0 +1,80 @@ + + + + + Bitly + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Bitly

+
+
constructor(accessToken: String)(source)

Creates a new instance using an API Access Token.

Parameters

accessToken

The API access token.


constructor(properties: Properties, key: String = Constants.ENV_ACCESS_TOKEN)(source)

Creates a new instance using a properties and property key.

Parameters

properties

The properties containing the API Access Token.

key

The property key containing the API Access Token.


constructor(propertiesFilePath: Path, key: String = Constants.ENV_ACCESS_TOKEN)(source)

Creates a new instance using a properties file path and property key.

Parameters

propertiesFilePath

The file path of the properties containing the API Access Token.

key

The property key containing the API Access Token.


constructor(propertiesFile: File, key: String = Constants.ENV_ACCESS_TOKEN)(source)

Creates a new instance using a properties file and property key.

Parameters

propertiesFile

The properties file containing the API Access Token.

key

The property key containing the API Access Token.


constructor()(source)

Creates new instance.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..698121e --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/access-token.html @@ -0,0 +1,80 @@ + + + + + accessToken + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

accessToken

+
+

The API access token.

See Generic Access Token or Authentication.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html new file mode 100644 index 0000000..fc040fe --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html @@ -0,0 +1,80 @@ + + + + + bitlinks + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

bitlinks

+
+

Returns a new Bitlinks instance.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/call.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/call.html new file mode 100644 index 0000000..728da27 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/call.html @@ -0,0 +1,80 @@ + + + + + call + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

call

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

Executes an API call.

Return

A CallResponse object.

Parameters

endPoint

The REST endpoint path. (eg. shorten, expand, etc.)

params

The request parameters key/value map.

method

The submission Method.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/index.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/index.html new file mode 100644 index 0000000..3b8ad9e --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-bitly/index.html @@ -0,0 +1,157 @@ + + + + + Bitly + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Bitly

+
open class Bitly(source)

Provides access to the Bitly API v4.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(accessToken: String)

Creates a new instance using an API Access Token.

constructor(properties: Properties, key: String = Constants.ENV_ACCESS_TOKEN)

Creates a new instance using a properties and property key.

constructor(propertiesFilePath: Path, key: String = Constants.ENV_ACCESS_TOKEN)

Creates a new instance using a properties file path and property key.

constructor(propertiesFile: File, key: String = Constants.ENV_ACCESS_TOKEN)

Creates a new instance using a properties file and property key.

constructor()

Creates new instance.

+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

The API access token.

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns a new Bitlinks instance.

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

Executes an API call.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..c9ea1ef --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/-call-response.html @@ -0,0 +1,80 @@ + + + + + CallResponse + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CallResponse

+
+
constructor(body: String = Constants.EMPTY_JSON, message: String = "", description: String = "", statusCode: Int = -1)(source)

Parameters

body

The response body.

message

Bitly error message, if any.

description

Bitly error description, if any.

statusCode

HTTP status code,

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..251d0dc --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/body.html @@ -0,0 +1,80 @@ + + + + + body + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

body

+
+

Parameters

body

The response body.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..3adc0d4 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/description.html @@ -0,0 +1,80 @@ + + + + + description + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

description

+
+

Parameters

description

Bitly error description, if any.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..cdad4df --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/index.html @@ -0,0 +1,348 @@ + + + + + CallResponse + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

CallResponse

+
data class CallResponse(val body: String = Constants.EMPTY_JSON, val message: String = "", val description: String = "", val statusCode: Int = -1)(source)

Provides a data class to hold the JSON response.

Parameters

body

The response body.

message

Bitly error message, if any.

description

Bitly error description, if any.

statusCode

HTTP status code,

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(body: String = Constants.EMPTY_JSON, message: String = "", description: String = "", statusCode: Int = -1)
+
+
+
+
+
+
+
+

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
+
+
+ +
+
+
+ +
+
+
+ + +
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
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..2364ee8 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-bad-request.html @@ -0,0 +1,80 @@ + + + + + isBadRequest + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isBadRequest

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..ad25cf7 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-created.html @@ -0,0 +1,80 @@ + + + + + isCreated + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isCreated

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..c487a75 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-expectation-failed.html @@ -0,0 +1,80 @@ + + + + + isExpectationFailed + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isExpectationFailed

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..bb60c3e --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-forbidden.html @@ -0,0 +1,80 @@ + + + + + isForbidden + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isForbidden

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..6884d80 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-gone.html @@ -0,0 +1,80 @@ + + + + + isGone + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isGone

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..2746996 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-internal-error.html @@ -0,0 +1,80 @@ + + + + + isInternalError + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isInternalError

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..615e27c --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-not-found.html @@ -0,0 +1,80 @@ + + + + + isNotFound + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isNotFound

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..9874ba1 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-successful.html @@ -0,0 +1,80 @@ + + + + + isSuccessful + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isSuccessful

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..fc673fc --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-temporarily-unavailable.html @@ -0,0 +1,80 @@ + + + + + isTemporarilyUnavailable + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isTemporarilyUnavailable

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..93b81bd --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-too-many-requests.html @@ -0,0 +1,80 @@ + + + + + isTooManyRequests + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isTooManyRequests

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..eb43618 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-unprocessable-entity.html @@ -0,0 +1,80 @@ + + + + + isUnprocessableEntity + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isUnprocessableEntity

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..e8880a3 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-upgrade-required.html @@ -0,0 +1,80 @@ + + + + + isUpgradeRequired + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isUpgradeRequired

+
+ +
+ +
+
+
+ + 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 new file mode 100644 index 0000000..812660e --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/message.html @@ -0,0 +1,80 @@ + + + + + message + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

message

+
+

Parameters

message

Bitly error message, if any.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..ea64ee9 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-call-response/status-code.html @@ -0,0 +1,80 @@ + + + + + statusCode + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

statusCode

+
+

Parameters

statusCode

HTTP status code,

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..8111232 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html @@ -0,0 +1,80 @@ + + + + + API_BASE_URL + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

API_BASE_URL

+
+

The Bitly API base URL.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..e0de891 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html @@ -0,0 +1,80 @@ + + + + + EMPTY + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

EMPTY

+
+
const val EMPTY: String(source)

Empty String.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..9fc0981 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html @@ -0,0 +1,80 @@ + + + + + EMPTY_JSON + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

EMPTY_JSON

+
+

Empty JSON Object.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..6ef1a3e --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html @@ -0,0 +1,80 @@ + + + + + ENV_ACCESS_TOKEN + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

ENV_ACCESS_TOKEN

+
+

The API access token environment variable.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..b6ff652 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.html @@ -0,0 +1,80 @@ + + + + + FALSE + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

FALSE

+
+
const val FALSE: String(source)

False

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..7aacaf9 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-constants/-t-r-u-e.html @@ -0,0 +1,80 @@ + + + + + TRUE + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

TRUE

+
+
const val TRUE: String(source)

True

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-constants/index.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-constants/index.html new file mode 100644 index 0000000..54a976b --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-constants/index.html @@ -0,0 +1,179 @@ + + + + + Constants + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Constants

+

Provides the constants for this package.

+
+
+
+
+
+

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/-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 new file mode 100644 index 0000000..e5e7843 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html @@ -0,0 +1,119 @@ + + + + + DELETE + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

DELETE

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..f4f890f --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html @@ -0,0 +1,119 @@ + + + + + GET + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

GET

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..241e3c0 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html @@ -0,0 +1,119 @@ + + + + + PATCH + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

PATCH

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..b5be452 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html @@ -0,0 +1,119 @@ + + + + + POST + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

POST

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/index.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/index.html new file mode 100644 index 0000000..ba30f73 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/index.html @@ -0,0 +1,217 @@ + + + + + Methods + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Methods

+

Provides HTTP methods definitions.

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun valueOf(value: String): Methods

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..5716c64 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/value-of.html @@ -0,0 +1,80 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

valueOf

+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/values.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/values.html new file mode 100644 index 0000000..ca80b18 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-methods/values.html @@ -0,0 +1,80 @@ + + + + + values + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..41d72ab --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html @@ -0,0 +1,119 @@ + + + + + DAY + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

DAY

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..52adf59 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html @@ -0,0 +1,119 @@ + + + + + HOUR + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

HOUR

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..53e95b6 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html @@ -0,0 +1,119 @@ + + + + + MINUTE + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

MINUTE

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..667862c --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html @@ -0,0 +1,119 @@ + + + + + MONTH + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

MONTH

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..f0d77cc --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html @@ -0,0 +1,119 @@ + + + + + WEEK + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

WEEK

+ +
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/index.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/index.html new file mode 100644 index 0000000..c9630ec --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/index.html @@ -0,0 +1,232 @@ + + + + + Units + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Units

+

Provides units of time definitions.

+
+
+
+
+
+

Entries

+
+
+
+
+ + +
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
+
+
+
+ +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun valueOf(value: String): Units

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..af0876f --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/value-of.html @@ -0,0 +1,80 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

valueOf

+
+
fun valueOf(value: String): Units(source)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/values.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/values.html new file mode 100644 index 0000000..5e90fdf --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-units/values.html @@ -0,0 +1,80 @@ + + + + + values + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

values

+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/call.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/call.html new file mode 100644 index 0000000..d681d52 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/call.html @@ -0,0 +1,80 @@ + + + + + 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 URI. (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/index.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/index.html new file mode 100644 index 0000000..8a16452 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/index.html @@ -0,0 +1,183 @@ + + + + + Utils + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Utils

+
object Utils(source)

Provides useful generic functions.

+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+

The logger instance.

+
+
+
+
+
+
+
+

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
+
+
+
+

Determines if Level.SEVERE logging is 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.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..598ea0c --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/is-severe-loggable.html @@ -0,0 +1,80 @@ + + + + + isSevereLoggable + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isSevereLoggable

+
+

Determines if Level.SEVERE logging is enabled.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..8dc9eac --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/is-valid-url.html @@ -0,0 +1,80 @@ + + + + + isValidUrl + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

isValidUrl

+
+

Validates a URL.

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/logger.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/logger.html new file mode 100644 index 0000000..bb25792 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/logger.html @@ -0,0 +1,80 @@ + + + + + logger + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

logger

+
+

The logger instance.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..1512368 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/remove-http.html @@ -0,0 +1,80 @@ + + + + + removeHttp + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

removeHttp

+
+

Removes http(s) scheme from string.

+
+ +
+
+
+ + 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 new file mode 100644 index 0000000..e97bf58 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/-utils/to-end-point.html @@ -0,0 +1,80 @@ + + + + + toEndPoint + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

toEndPoint

+
+

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

+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/net.thauvin.erik.bitly/index.html b/docs/-bitly--shorten/net.thauvin.erik.bitly/index.html new file mode 100644 index 0000000..0f3f9d3 --- /dev/null +++ b/docs/-bitly--shorten/net.thauvin.erik.bitly/index.html @@ -0,0 +1,194 @@ + + + + + net.thauvin.erik.bitly + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+

Package-level declarations

+

Provides the classes necessary to access the Bitly API v4.

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
open class Bitlinks(accessToken: String)

Provides functions to create and manage Bitlinks.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open class Bitly

Provides access to the Bitly API v4.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
data class CallResponse(val body: String = Constants.EMPTY_JSON, val message: String = "", val description: String = "", val statusCode: Int = -1)

Provides a data class to hold the JSON response.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Constants

Provides the constants for this package.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

Provides HTTP methods definitions.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
enum Units : Enum<Units>

Provides units of time definitions.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Utils

Provides useful generic functions.

+
+
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/-bitly--shorten/package-list b/docs/-bitly--shorten/package-list new file mode 100644 index 0000000..42f8c04 --- /dev/null +++ b/docs/-bitly--shorten/package-list @@ -0,0 +1,123 @@ +$dokka.format:html-v1 +$dokka.linkExtension:html +$dokka.location:net.thauvin.erik.bitly.config////PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/index.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder///PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/Builder/#kotlin.String#kotlin.String#kotlin.String#kotlin.Array[kotlin.String]#kotlin.Array[kotlin.collections.Map[kotlin.String,kotlin.String]]#kotlin.String#kotlin.Boolean/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/-builder.html +$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/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 +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig.Builder/toJson/#kotlin.Boolean/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/-builder/to-json.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig///PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/index.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/deepLinks/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/deep-links.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/domain/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/domain.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/group_guid/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/group_guid.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/long_url/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/long_url.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/tags/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/tags.html +$dokka.location:net.thauvin.erik.bitly.config/CreateConfig/title/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-create-config/title.html +$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/#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/#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/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/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/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/#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/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/#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/#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/#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 +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/bitlink/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/client_id/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/client_id.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/created_at/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/created_at.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/created_by/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/created_by.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/custom_bitlinks/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/custom_bitlinks.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/deepLinks/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/deep-links.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/id/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/id.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/link/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/link.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/long_url/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/long_url.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/references/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/references.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/tags/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/tags.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/title/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/title.html +$dokka.location:net.thauvin.erik.bitly.config/UpdateConfig/toJson/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly.config/-update-config/to-json.html +$dokka.location:net.thauvin.erik.bitly////PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/index.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks///PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/index.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/Bitlinks/#kotlin.String/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/-bitlinks.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/clicks/#kotlin.String#net.thauvin.erik.bitly.Units#kotlin.Int#kotlin.Int#kotlin.String#kotlin.Boolean/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/clicks.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/create/#kotlin.String#kotlin.String#kotlin.String#kotlin.Array[kotlin.String]#kotlin.Array[kotlin.collections.Map[kotlin.String,kotlin.String]]#kotlin.String#kotlin.Boolean/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/create.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/create/#net.thauvin.erik.bitly.config.CreateConfig/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/create.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/expand/#kotlin.String#kotlin.Boolean/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/expand.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/lastCallResponse/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/last-call-response.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/shorten/#kotlin.String#kotlin.String#kotlin.String#kotlin.Boolean/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/shorten.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/update/#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/-bitlinks/update.html +$dokka.location:net.thauvin.erik.bitly/Bitlinks/update/#net.thauvin.erik.bitly.config.UpdateConfig/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitlinks/update.html +$dokka.location:net.thauvin.erik.bitly/Bitly///PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitly/index.html +$dokka.location:net.thauvin.erik.bitly/Bitly/Bitly/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +$dokka.location:net.thauvin.erik.bitly/Bitly/Bitly/#java.io.File#kotlin.String/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +$dokka.location:net.thauvin.erik.bitly/Bitly/Bitly/#java.nio.file.Path#kotlin.String/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +$dokka.location:net.thauvin.erik.bitly/Bitly/Bitly/#java.util.Properties#kotlin.String/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +$dokka.location:net.thauvin.erik.bitly/Bitly/Bitly/#kotlin.String/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitly/-bitly.html +$dokka.location:net.thauvin.erik.bitly/Bitly/accessToken/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitly/access-token.html +$dokka.location:net.thauvin.erik.bitly/Bitly/bitlinks/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitly/bitlinks.html +$dokka.location:net.thauvin.erik.bitly/Bitly/call/#kotlin.String#kotlin.collections.Map[kotlin.String,kotlin.Any]#net.thauvin.erik.bitly.Methods/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-bitly/call.html +$dokka.location:net.thauvin.erik.bitly/CallResponse///PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/index.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/CallResponse/#kotlin.String#kotlin.String#kotlin.String#kotlin.Int/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/-call-response.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/body/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/body.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/description/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/description.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isBadRequest/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-bad-request.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isCreated/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-created.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isExpectationFailed/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-expectation-failed.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isForbidden/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-forbidden.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isGone/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-gone.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isInternalError/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-internal-error.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isNotFound/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-not-found.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isSuccessful/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-successful.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isTemporarilyUnavailable/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-temporarily-unavailable.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isTooManyRequests/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-too-many-requests.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isUnprocessableEntity/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-unprocessable-entity.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/isUpgradeRequired/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/is-upgrade-required.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/message/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/message.html +$dokka.location:net.thauvin.erik.bitly/CallResponse/statusCode/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-call-response/status-code.html +$dokka.location:net.thauvin.erik.bitly/Constants///PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-constants/index.html +$dokka.location:net.thauvin.erik.bitly/Constants/API_BASE_URL/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-constants/-a-p-i_-b-a-s-e_-u-r-l.html +$dokka.location:net.thauvin.erik.bitly/Constants/EMPTY/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y.html +$dokka.location:net.thauvin.erik.bitly/Constants/EMPTY_JSON/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-constants/-e-m-p-t-y_-j-s-o-n.html +$dokka.location:net.thauvin.erik.bitly/Constants/ENV_ACCESS_TOKEN/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-constants/-e-n-v_-a-c-c-e-s-s_-t-o-k-e-n.html +$dokka.location:net.thauvin.erik.bitly/Constants/FALSE/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-constants/-f-a-l-s-e.html +$dokka.location:net.thauvin.erik.bitly/Constants/TRUE/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-constants/-t-r-u-e.html +$dokka.location:net.thauvin.erik.bitly/Methods.DELETE///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly--shorten/net.thauvin.erik.bitly/-methods/-d-e-l-e-t-e/index.html +$dokka.location:net.thauvin.erik.bitly/Methods.GET///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly--shorten/net.thauvin.erik.bitly/-methods/-g-e-t/index.html +$dokka.location:net.thauvin.erik.bitly/Methods.PATCH///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly--shorten/net.thauvin.erik.bitly/-methods/-p-a-t-c-h/index.html +$dokka.location:net.thauvin.erik.bitly/Methods.POST///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly--shorten/net.thauvin.erik.bitly/-methods/-p-o-s-t/index.html +$dokka.location:net.thauvin.erik.bitly/Methods///PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-methods/index.html +$dokka.location:net.thauvin.erik.bitly/Methods/valueOf/#kotlin.String/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-methods/value-of.html +$dokka.location:net.thauvin.erik.bitly/Methods/values/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-methods/values.html +$dokka.location:net.thauvin.erik.bitly/Units.DAY///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly--shorten/net.thauvin.erik.bitly/-units/-d-a-y/index.html +$dokka.location:net.thauvin.erik.bitly/Units.HOUR///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly--shorten/net.thauvin.erik.bitly/-units/-h-o-u-r/index.html +$dokka.location:net.thauvin.erik.bitly/Units.MINUTE///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly--shorten/net.thauvin.erik.bitly/-units/-m-i-n-u-t-e/index.html +$dokka.location:net.thauvin.erik.bitly/Units.MONTH///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly--shorten/net.thauvin.erik.bitly/-units/-m-o-n-t-h/index.html +$dokka.location:net.thauvin.erik.bitly/Units.WEEK///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-bitly--shorten/net.thauvin.erik.bitly/-units/-w-e-e-k/index.html +$dokka.location:net.thauvin.erik.bitly/Units///PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-units/index.html +$dokka.location:net.thauvin.erik.bitly/Units/valueOf/#kotlin.String/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-units/value-of.html +$dokka.location:net.thauvin.erik.bitly/Units/values/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-units/values.html +$dokka.location:net.thauvin.erik.bitly/Utils///PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-utils/index.html +$dokka.location:net.thauvin.erik.bitly/Utils/call/#kotlin.String#kotlin.String#kotlin.collections.Map[kotlin.String,kotlin.Any]#net.thauvin.erik.bitly.Methods/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-utils/call.html +$dokka.location:net.thauvin.erik.bitly/Utils/isSevereLoggable/java.util.logging.Logger#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-utils/is-severe-loggable.html +$dokka.location:net.thauvin.erik.bitly/Utils/isValidUrl/kotlin.String#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-utils/is-valid-url.html +$dokka.location:net.thauvin.erik.bitly/Utils/logger/#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-utils/logger.html +$dokka.location:net.thauvin.erik.bitly/Utils/removeHttp/kotlin.String#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-utils/remove-http.html +$dokka.location:net.thauvin.erik.bitly/Utils/toEndPoint/kotlin.String#/PointingToDeclaration/-bitly--shorten/net.thauvin.erik.bitly/-utils/to-end-point.html +net.thauvin.erik.bitly +net.thauvin.erik.bitly.config + 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 39439f1..9299f25 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 8887af1..924e7aa 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 a902e39..afefdd9 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 5047ae8..9c06d13 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 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html index efafdb6..9341e11 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/group-guid.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html index d97d3ea..b827fe5 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-create-config/-builder/index.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
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 c5f434d..e699a4c 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 d900f4e..daca9b0 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 79450ae..b19ee22 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 006d4f1..97be5b8 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 46517de..3213539 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 b6b8cf7..1a55cbe 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 6cf81c8..dbc6973 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 9302187..ebfd289 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 fefb530..b83e786 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 453b9cd..6073a02 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 51ad0c3..236b069 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 f4fc996..eafb57a 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 708498e..5503e8b 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 3a8bfa3..cb12aff 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 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html index 711733f..7249f54 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/bitlink.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html index 6bf2441..6d56a57 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/build.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
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 1764553..01a4a12 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 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html index a608f12..c25c7cc 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-at.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html index 3c751e9..da98157 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/created-by.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html index 28b45ae..67b8fd7 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/custom-bitlinks.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html index f93c455..dbb6b2c 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/deep-links.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html index 3dbab33..1fa6d39 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/id.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html index 2eaf929..45a529c 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/index.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
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 4108557..9c046c4 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 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html index 9b6c451..3ee5dd9 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/long-url.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html index ad6af3a..086a75a 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/references.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html index e179976..e9378f9 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/tags.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html index a707bf9..654bb1f 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/title.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html index e3b265d..7288ded 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/-builder/to-json.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/archived.html b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/archived.html index e7809a2..ed4df2c 100644 --- a/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/archived.html +++ b/docs/bitly-shorten/net.thauvin.erik.bitly.config/-update-config/archived.html @@ -45,7 +45,7 @@
-1.0.0
+1.0.2-SNAPSHOT
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 50e0523..db50a5b 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 0000a7a..35d0b9b 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 41f9254..30c1980 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 ecbf31f..0c43294 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 b945dcf..22273dc 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 538e76c..c473d6f 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 0f5def6..ab103e6 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 7802b40..15db502 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 506d893..8ae1fa0 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 458729f..49b82b7 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 85d2646..3ca936e 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 fc7247e..20d6553 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 5c7b37e..842e2c0 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 7d0ddf1..48b4d7b 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 f9715e6..62c3517 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 eadd160..2cad864 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 af7cdea..6d3e25f 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 2c2a07c..66b0ba2 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 1e74d94..5a867bb 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 40283f9..aff8831 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 048c0da..165f471 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 195331d..5646dfd 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 c8b0b55..53b9ba1 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 8f5d2bc..79dbb67 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 c6c81d9..947a0c1 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 2da2970..948a813 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 d0dcf8a..8bc6900 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 31f01be..7e2c38d 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 d938b84..47e5238 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 6f62054..c00edc2 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 1e07609..4ad413f 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 9c56030..c00d49e 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 2523a81..a9c75a8 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 1b4fac1..294aad3 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 1ca29fc..33f34c4 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 d0742f3..29ebd60 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 d733a80..d6a3d49 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 5dfad87..e792608 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 f713445..e4ca694 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 2c92ff3..a2f95e3 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 56f19d6..a44af24 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 0e3d065..78cde43 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 70f1ded..8df2add 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 0e3609a..eafc7c7 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 b5b49ee..6c59026 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 c31b8d6..48ba78f 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 ec99959..76276f7 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 4c9ede9..03f3047 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 331054d..451164d 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 ae669ff..97853ec 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 bc6513a..228d67c 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 2834f11..e7cf232 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 8b3ef39..92be26f 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 aa302c0..86abaf1 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 9c4f4f2..67bc6f8 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 9454b43..e306f2c 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 ed7fae8..5fa3520 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 5038074..0c57acc 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 bb22769..40d0cdc 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 e8b7b25..fca62a9 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 8d887ec..1f02a09 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 179ee7b..12d539f 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 ce4bdb1..1d1eedf 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 048e3a5..038079e 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 8901c75..39bc87d 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 62a72b2..6c389fd 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 9ef7b20..ce42407 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 12573c5..07b3fb4 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 66a882a..7ee0893 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 c033a8a..930ec88 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 499949b..17e0dc8 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 00a5306..588b620 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 91fc17d..ff67760 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 ff649a8..77e3ee4 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 ed92640..2464ce7 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 46b7181..a349c01 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 @@
-1.0.0
+1.0.2-SNAPSHOT
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 5c66aec..56e0259 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 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/bitly-shorten/net.thauvin.erik.bitly/index.html b/docs/bitly-shorten/net.thauvin.erik.bitly/index.html index cc6c52e..de7030c 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 @@
-1.0.0
+1.0.2-SNAPSHOT
diff --git a/docs/images/anchor-copy-button.svg b/docs/images/anchor-copy-button.svg index bab9d74..19c1fa3 100644 --- a/docs/images/anchor-copy-button.svg +++ b/docs/images/anchor-copy-button.svg @@ -1,4 +1,8 @@ + + - \ No newline at end of file + diff --git a/docs/images/arrow_down.svg b/docs/images/arrow_down.svg index c0388de..639aaf1 100644 --- a/docs/images/arrow_down.svg +++ b/docs/images/arrow_down.svg @@ -1,3 +1,7 @@ + + - \ No newline at end of file + diff --git a/docs/images/burger.svg b/docs/images/burger.svg index d6dcefc..fcca732 100644 --- a/docs/images/burger.svg +++ b/docs/images/burger.svg @@ -1,5 +1,9 @@ + + - \ No newline at end of file + diff --git a/docs/images/copy-icon.svg b/docs/images/copy-icon.svg index 61440f0..2cb02ec 100644 --- a/docs/images/copy-icon.svg +++ b/docs/images/copy-icon.svg @@ -1,3 +1,7 @@ + + - \ No newline at end of file + diff --git a/docs/images/copy-successful-icon.svg b/docs/images/copy-successful-icon.svg index 1865f73..c4b9538 100644 --- a/docs/images/copy-successful-icon.svg +++ b/docs/images/copy-successful-icon.svg @@ -1,3 +1,7 @@ + + - \ No newline at end of file + diff --git a/docs/images/footer-go-to-link.svg b/docs/images/footer-go-to-link.svg index 0137e22..a87add7 100644 --- a/docs/images/footer-go-to-link.svg +++ b/docs/images/footer-go-to-link.svg @@ -1,3 +1,7 @@ + + - \ No newline at end of file + diff --git a/docs/images/go-to-top-icon.svg b/docs/images/go-to-top-icon.svg index d987f3e..abc3d1c 100644 --- a/docs/images/go-to-top-icon.svg +++ b/docs/images/go-to-top-icon.svg @@ -1,4 +1,8 @@ + + - \ No newline at end of file + diff --git a/docs/images/homepage.svg b/docs/images/homepage.svg new file mode 100644 index 0000000..e3c83b1 --- /dev/null +++ b/docs/images/homepage.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/images/logo-icon.svg b/docs/images/logo-icon.svg index 1fea087..e42f957 100644 --- a/docs/images/logo-icon.svg +++ b/docs/images/logo-icon.svg @@ -1,3 +1,7 @@ + + @@ -7,4 +11,4 @@ - \ No newline at end of file + diff --git a/docs/images/nav-icons/abstract-class-kotlin.svg b/docs/images/nav-icons/abstract-class-kotlin.svg index a2069b8..19d6148 100644 --- a/docs/images/nav-icons/abstract-class-kotlin.svg +++ b/docs/images/nav-icons/abstract-class-kotlin.svg @@ -1,3 +1,7 @@ + + diff --git a/docs/images/nav-icons/annotation-kotlin.svg b/docs/images/nav-icons/annotation-kotlin.svg index 932f1d3..b90f508 100644 --- a/docs/images/nav-icons/annotation-kotlin.svg +++ b/docs/images/nav-icons/annotation-kotlin.svg @@ -1,3 +1,7 @@ + + diff --git a/docs/images/nav-icons/class-kotlin.svg b/docs/images/nav-icons/class-kotlin.svg index 46a21f6..797a242 100644 --- a/docs/images/nav-icons/class-kotlin.svg +++ b/docs/images/nav-icons/class-kotlin.svg @@ -1,3 +1,7 @@ + + diff --git a/docs/images/nav-icons/enum-kotlin.svg b/docs/images/nav-icons/enum-kotlin.svg index 4a85459..775a7cc 100644 --- a/docs/images/nav-icons/enum-kotlin.svg +++ b/docs/images/nav-icons/enum-kotlin.svg @@ -1,3 +1,7 @@ + + diff --git a/docs/images/nav-icons/field-value.svg b/docs/images/nav-icons/field-value.svg index 20449c9..2771ee5 100644 --- a/docs/images/nav-icons/field-value.svg +++ b/docs/images/nav-icons/field-value.svg @@ -1,3 +1,7 @@ + + diff --git a/docs/images/nav-icons/field-variable.svg b/docs/images/nav-icons/field-variable.svg index 3b07450..e2d2bbd 100644 --- a/docs/images/nav-icons/field-variable.svg +++ b/docs/images/nav-icons/field-variable.svg @@ -1,3 +1,7 @@ + + diff --git a/docs/images/nav-icons/interface-kotlin.svg b/docs/images/nav-icons/interface-kotlin.svg index bf07a14..5e16326 100644 --- a/docs/images/nav-icons/interface-kotlin.svg +++ b/docs/images/nav-icons/interface-kotlin.svg @@ -1,3 +1,7 @@ + + diff --git a/docs/images/nav-icons/object.svg b/docs/images/nav-icons/object.svg index 9f427de..31f0ee3 100644 --- a/docs/images/nav-icons/object.svg +++ b/docs/images/nav-icons/object.svg @@ -1,3 +1,7 @@ + + diff --git a/docs/images/nav-icons/typealias-kotlin.svg b/docs/images/nav-icons/typealias-kotlin.svg index 4795069..f4bb238 100644 --- a/docs/images/nav-icons/typealias-kotlin.svg +++ b/docs/images/nav-icons/typealias-kotlin.svg @@ -1,3 +1,7 @@ + + diff --git a/docs/images/theme-toggle.svg b/docs/images/theme-toggle.svg index dad3ff2..df86202 100644 --- a/docs/images/theme-toggle.svg +++ b/docs/images/theme-toggle.svg @@ -1,3 +1,7 @@ + + - \ No newline at end of file + diff --git a/docs/index.html b/docs/index.html index fe16c85..14a647d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2,7 +2,7 @@ - bitly-shorten + Bitly Shorten @@ -41,14 +41,14 @@
-1.0.0
+2.0.0
- +
-
+
-

bitly-shorten

-

Bitly Shortener for Kotlin, Java & Android

A simple implementation of the Bitly link shortening (Bitlinks) API v4.

+

Bitly Shorten

Packages

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

Provides the classes necessary to access the Bitly API v4.

- -
+ +
- +
-
-

Provides configuration builders.

+
+

Provides configuration builders for creating and updating Bitlinks.

+
+
+
+ +
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+

Provides deeplinks configurations for creating and updating Bitlinks.

+
+
+
+ +
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+

Provides the deeplinks enumerations.

diff --git a/docs/navigation.html b/docs/navigation.html index 72542f4..7c574fa 100644 --- a/docs/navigation.html +++ b/docs/navigation.html @@ -1,68 +1,101 @@ -
- -
- -
- +
+ +
+ + -
- +
+
-
- + -
- + -
- -
- +
+ +
+
-
- +
+
-
- +
+
-
- +
+
-
- -
- +
+ +
+
-
- +
+
-
- +
+
-
- +
+
-
- +
+
-
- +
+
-
- -
- -
- +
+ + -
- -
- +
+ +
+ +
+
+
+ + diff --git a/docs/scripts/clipboard.js b/docs/scripts/clipboard.js index b00ce24..7a4f33c 100644 --- a/docs/scripts/clipboard.js +++ b/docs/scripts/clipboard.js @@ -1,3 +1,7 @@ +/* + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + window.addEventListener('load', () => { document.querySelectorAll('span.copy-icon').forEach(element => { element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); diff --git a/docs/scripts/navigation-loader.js b/docs/scripts/navigation-loader.js index 9246491..3df7ac8 100644 --- a/docs/scripts/navigation-loader.js +++ b/docs/scripts/navigation-loader.js @@ -1,3 +1,7 @@ +/* + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + navigationPageText = fetch(pathToRoot + "navigation.html").then(response => response.text()) displayNavigationFromPage = () => { diff --git a/docs/scripts/pages.json b/docs/scripts/pages.json index 51e370d..f285fd5 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(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"]}] +[{"name":"ANDROID","description":"net.thauvin.erik.bitly.config.deeplinks.enums.Os.ANDROID","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/-a-n-d-r-o-i-d/index.html","searchKeys":["ANDROID","ANDROID","net.thauvin.erik.bitly.config.deeplinks.enums.Os.ANDROID"]},{"name":"AUTO_INSTALL","description":"net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.AUTO_INSTALL","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-a-u-t-o_-i-n-s-t-a-l-l/index.html","searchKeys":["AUTO_INSTALL","AUTO_INSTALL","net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.AUTO_INSTALL"]},{"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":"IOS","description":"net.thauvin.erik.bitly.config.deeplinks.enums.Os.IOS","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/-i-o-s/index.html","searchKeys":["IOS","IOS","net.thauvin.erik.bitly.config.deeplinks.enums.Os.IOS"]},{"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":"NO_INSTALL","description":"net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.NO_INSTALL","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-n-o_-i-n-s-t-a-l-l/index.html","searchKeys":["NO_INSTALL","NO_INSTALL","net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.NO_INSTALL"]},{"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":"PROMOTE_INSTALL","description":"net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.PROMOTE_INSTALL","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/-p-r-o-m-o-t-e_-i-n-s-t-a-l-l/index.html","searchKeys":["PROMOTE_INSTALL","PROMOTE_INSTALL","net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.PROMOTE_INSTALL"]},{"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 constructor(var long_url: String, var domain: String = Constants.EMPTY, var group_guid: String = Constants.EMPTY, var title: String = Constants.EMPTY, var tags: Array = emptyArray(), var deeplinks: CreateDeeplinks = CreateDeeplinks(), var toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.CreateConfig","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/index.html","searchKeys":["CreateConfig","class CreateConfig constructor(var long_url: String, var domain: String = Constants.EMPTY, var group_guid: String = Constants.EMPTY, var title: String = Constants.EMPTY, var tags: Array = emptyArray(), var deeplinks: CreateDeeplinks = CreateDeeplinks(), var toJson: Boolean = false)","net.thauvin.erik.bitly.config.CreateConfig"]},{"name":"class CreateDeeplinks","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/index.html","searchKeys":["CreateDeeplinks","class CreateDeeplinks","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks"]},{"name":"class UpdateConfig constructor(var bitlink: String, var title: String = Constants.EMPTY, var archived: Boolean = false, var tags: Array = emptyArray(), var deeplinks: UpdateDeeplinks = UpdateDeeplinks(), var toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.UpdateConfig","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/index.html","searchKeys":["UpdateConfig","class UpdateConfig constructor(var bitlink: String, var title: String = Constants.EMPTY, var archived: Boolean = false, var tags: Array = emptyArray(), var deeplinks: UpdateDeeplinks = UpdateDeeplinks(), var toJson: Boolean = false)","net.thauvin.erik.bitly.config.UpdateConfig"]},{"name":"class UpdateDeeplinks","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/index.html","searchKeys":["UpdateDeeplinks","class UpdateDeeplinks","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks"]},{"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()","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.CreateDeeplinks","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/-create-deeplinks.html","searchKeys":["CreateDeeplinks","constructor()","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.CreateDeeplinks"]},{"name":"constructor()","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.UpdateDeeplinks","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/-update-deeplinks.html","searchKeys":["UpdateDeeplinks","constructor()","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.UpdateDeeplinks"]},{"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)","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)","net.thauvin.erik.bitly.config.UpdateConfig.Builder.Builder"]},{"name":"constructor(bitlink: String, title: String = Constants.EMPTY, archived: Boolean = false, tags: Array = emptyArray(), deeplinks: UpdateDeeplinks = UpdateDeeplinks(), toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.UpdateConfig.UpdateConfig","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-update-config.html","searchKeys":["UpdateConfig","constructor(bitlink: String, title: String = Constants.EMPTY, archived: Boolean = false, tags: Array = emptyArray(), deeplinks: UpdateDeeplinks = UpdateDeeplinks(), toJson: Boolean = false)","net.thauvin.erik.bitly.config.UpdateConfig.UpdateConfig"]},{"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(builder: CreateConfig.Builder)","description":"net.thauvin.erik.bitly.config.CreateConfig.CreateConfig","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-create-config.html","searchKeys":["CreateConfig","constructor(builder: CreateConfig.Builder)","net.thauvin.erik.bitly.config.CreateConfig.CreateConfig"]},{"name":"constructor(builder: UpdateConfig.Builder)","description":"net.thauvin.erik.bitly.config.UpdateConfig.UpdateConfig","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/-update-config.html","searchKeys":["UpdateConfig","constructor(builder: UpdateConfig.Builder)","net.thauvin.erik.bitly.config.UpdateConfig.UpdateConfig"]},{"name":"constructor(long_url: String)","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(long_url: String)","net.thauvin.erik.bitly.config.CreateConfig.Builder.Builder"]},{"name":"constructor(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, title: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: CreateDeeplinks = CreateDeeplinks(), toJson: Boolean = false)","description":"net.thauvin.erik.bitly.config.CreateConfig.CreateConfig","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-create-config.html","searchKeys":["CreateConfig","constructor(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, title: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: CreateDeeplinks = CreateDeeplinks(), toJson: Boolean = false)","net.thauvin.erik.bitly.config.CreateConfig.CreateConfig"]},{"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(var bitlink: String)","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)","net.thauvin.erik.bitly.config.UpdateConfig.Builder"]},{"name":"data class Builder(var long_url: String)","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(var long_url: String)","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 InstallType : Enum ","description":"net.thauvin.erik.bitly.config.deeplinks.enums.InstallType","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/index.html","searchKeys":["InstallType","enum InstallType : Enum ","net.thauvin.erik.bitly.config.deeplinks.enums.InstallType"]},{"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 Os : Enum ","description":"net.thauvin.erik.bitly.config.deeplinks.enums.Os","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/index.html","searchKeys":["Os","enum Os : Enum ","net.thauvin.erik.bitly.config.deeplinks.enums.Os"]},{"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 app_guid(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.app_guid","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_guid.html","searchKeys":["app_guid","fun app_guid(): String?","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.app_guid"]},{"name":"fun app_guid(app_guid: String)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.app_guid","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_guid.html","searchKeys":["app_guid","fun app_guid(app_guid: String)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.app_guid"]},{"name":"fun app_id(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.app_id","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_id.html","searchKeys":["app_id","fun app_id(): String?","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.app_id"]},{"name":"fun app_id(app_id: String)","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.app_id","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_id.html","searchKeys":["app_id","fun app_id(app_id: String)","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.app_id"]},{"name":"fun app_uri_path(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.app_uri_path","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_uri_path.html","searchKeys":["app_uri_path","fun app_uri_path(): String?","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.app_uri_path"]},{"name":"fun app_uri_path(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.app_uri_path","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_uri_path.html","searchKeys":["app_uri_path","fun app_uri_path(): String?","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.app_uri_path"]},{"name":"fun app_uri_path(app_uri_path: String)","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.app_uri_path","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/app_uri_path.html","searchKeys":["app_uri_path","fun app_uri_path(app_uri_path: String)","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.app_uri_path"]},{"name":"fun app_uri_path(app_uri_path: String)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.app_uri_path","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/app_uri_path.html","searchKeys":["app_uri_path","fun app_uri_path(app_uri_path: String)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.app_uri_path"]},{"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(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.bitlink","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/bitlink.html","searchKeys":["bitlink","fun bitlink(): String?","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.bitlink"]},{"name":"fun bitlink(bitlink: String)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.bitlink","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/bitlink.html","searchKeys":["bitlink","fun bitlink(bitlink: String)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.bitlink"]},{"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 brand_guid(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.brand_guid","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/brand_guid.html","searchKeys":["brand_guid","fun brand_guid(): String?","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.brand_guid"]},{"name":"fun brand_guid(brand_guid: String)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.brand_guid","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/brand_guid.html","searchKeys":["brand_guid","fun brand_guid(brand_guid: String)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.brand_guid"]},{"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, 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, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.clicks"]},{"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(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, title: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: CreateDeeplinks = CreateDeeplinks(), 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(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, title: String = Constants.EMPTY, tags: Array = emptyArray(), deeplinks: CreateDeeplinks = CreateDeeplinks(), toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.create"]},{"name":"fun created(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.created","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/created.html","searchKeys":["created","fun created(): String?","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.created"]},{"name":"fun created(created: String)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.created","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/created.html","searchKeys":["created","fun created(created: String)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.created"]},{"name":"fun created(created: ZonedDateTime)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.created","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/created.html","searchKeys":["created","fun created(created: ZonedDateTime)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.created"]},{"name":"fun deeplinks(deeplinks: CreateDeeplinks): 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: CreateDeeplinks): CreateConfig.Builder","net.thauvin.erik.bitly.config.CreateConfig.Builder.deeplinks"]},{"name":"fun deeplinks(deeplinks: UpdateDeeplinks): 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: UpdateDeeplinks): 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 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 guid(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.guid","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/guid.html","searchKeys":["guid","fun guid(): String?","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.guid"]},{"name":"fun guid(guid: String)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.guid","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/guid.html","searchKeys":["guid","fun guid(guid: String)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.guid"]},{"name":"fun install_type(): InstallType?","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.install_type","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_type.html","searchKeys":["install_type","fun install_type(): InstallType?","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.install_type"]},{"name":"fun install_type(): InstallType?","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.install_type","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_type.html","searchKeys":["install_type","fun install_type(): InstallType?","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.install_type"]},{"name":"fun install_type(install_type: InstallType)","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.install_type","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_type.html","searchKeys":["install_type","fun install_type(install_type: InstallType)","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.install_type"]},{"name":"fun install_type(install_type: InstallType)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.install_type","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_type.html","searchKeys":["install_type","fun install_type(install_type: InstallType)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.install_type"]},{"name":"fun install_url(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.install_url","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_url.html","searchKeys":["install_url","fun install_url(): String?","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.install_url"]},{"name":"fun install_url(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.install_url","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_url.html","searchKeys":["install_url","fun install_url(): String?","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.install_url"]},{"name":"fun install_url(install_url: String)","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.install_url","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/install_url.html","searchKeys":["install_url","fun install_url(install_url: String)","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.install_url"]},{"name":"fun install_url(install_url: String)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.install_url","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/install_url.html","searchKeys":["install_url","fun install_url(install_url: String)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.install_url"]},{"name":"fun isNotEmpty(): Boolean","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.isNotEmpty","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/is-not-empty.html","searchKeys":["isNotEmpty","fun isNotEmpty(): Boolean","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.isNotEmpty"]},{"name":"fun isNotEmpty(): Boolean","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.isNotEmpty","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/is-not-empty.html","searchKeys":["isNotEmpty","fun isNotEmpty(): Boolean","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.isNotEmpty"]},{"name":"fun links(): Map","description":"net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.links","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-create-deeplinks/links.html","searchKeys":["links","fun links(): Map","net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks.links"]},{"name":"fun links(): Map","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.links","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/links.html","searchKeys":["links","fun links(): Map","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.links"]},{"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 modified(): String?","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.modified","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/modified.html","searchKeys":["modified","fun modified(): String?","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.modified"]},{"name":"fun modified(modified: String)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.modified","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/modified.html","searchKeys":["modified","fun modified(modified: String)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.modified"]},{"name":"fun modified(modified: ZonedDateTime)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.modified","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/modified.html","searchKeys":["modified","fun modified(modified: ZonedDateTime)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.modified"]},{"name":"fun os(): Os?","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.os","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/os.html","searchKeys":["os","fun os(): Os?","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.os"]},{"name":"fun os(os: Os)","description":"net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.os","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks/-update-deeplinks/os.html","searchKeys":["os","fun os(os: Os)","net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks.os"]},{"name":"fun shorten(long_url: String, domain: String = Constants.EMPTY, group_guid: 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, domain: String = Constants.EMPTY, group_guid: 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, title: String = Constants.EMPTY, archived: Boolean = false, tags: Array = emptyArray(), deeplinks: UpdateDeeplinks = UpdateDeeplinks(), 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, title: String = Constants.EMPTY, archived: Boolean = false, tags: Array = emptyArray(), deeplinks: UpdateDeeplinks = UpdateDeeplinks(), 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 updateCustom(custom_bitlink: String, bitlink_id: String, toJson: Boolean = false): String","description":"net.thauvin.erik.bitly.Bitlinks.updateCustom","location":"-bitly -shorten/net.thauvin.erik.bitly/-bitlinks/update-custom.html","searchKeys":["updateCustom","fun updateCustom(custom_bitlink: String, bitlink_id: String, toJson: Boolean = false): String","net.thauvin.erik.bitly.Bitlinks.updateCustom"]},{"name":"fun valueOf(value: String): InstallType","description":"net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.valueOf","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): InstallType","net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.valueOf"]},{"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): Os","description":"net.thauvin.erik.bitly.config.deeplinks.enums.Os.valueOf","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): Os","net.thauvin.erik.bitly.config.deeplinks.enums.Os.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.config.deeplinks.enums.InstallType.values","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/values.html","searchKeys":["values","fun values(): Array","net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.values"]},{"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.config.deeplinks.enums.Os.values","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/values.html","searchKeys":["values","fun values(): Array","net.thauvin.erik.bitly.config.deeplinks.enums.Os.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 ISO_TIMESTAMP: DateTimeFormatter","description":"net.thauvin.erik.bitly.Constants.ISO_TIMESTAMP","location":"-bitly -shorten/net.thauvin.erik.bitly/-constants/-i-s-o_-t-i-m-e-s-t-a-m-p.html","searchKeys":["ISO_TIMESTAMP","val ISO_TIMESTAMP: DateTimeFormatter","net.thauvin.erik.bitly.Constants.ISO_TIMESTAMP"]},{"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 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 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 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 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 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 type: String","description":"net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.type","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-install-type/type.html","searchKeys":["type","val type: String","net.thauvin.erik.bitly.config.deeplinks.enums.InstallType.type"]},{"name":"val type: String","description":"net.thauvin.erik.bitly.config.deeplinks.enums.Os.type","location":"-bitly -shorten/net.thauvin.erik.bitly.config.deeplinks.enums/-os/type.html","searchKeys":["type","val type: String","net.thauvin.erik.bitly.config.deeplinks.enums.Os.type"]},{"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 archived: Boolean","description":"net.thauvin.erik.bitly.config.UpdateConfig.archived","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/archived.html","searchKeys":["archived","var archived: Boolean","net.thauvin.erik.bitly.config.UpdateConfig.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 bitlink: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.bitlink","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/bitlink.html","searchKeys":["bitlink","var bitlink: String","net.thauvin.erik.bitly.config.UpdateConfig.bitlink"]},{"name":"var deeplinks: CreateDeeplinks","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.deeplinks","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/deeplinks.html","searchKeys":["deeplinks","var deeplinks: CreateDeeplinks","net.thauvin.erik.bitly.config.CreateConfig.Builder.deeplinks"]},{"name":"var deeplinks: CreateDeeplinks","description":"net.thauvin.erik.bitly.config.CreateConfig.deeplinks","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/deeplinks.html","searchKeys":["deeplinks","var deeplinks: CreateDeeplinks","net.thauvin.erik.bitly.config.CreateConfig.deeplinks"]},{"name":"var deeplinks: UpdateDeeplinks","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: UpdateDeeplinks","net.thauvin.erik.bitly.config.UpdateConfig.Builder.deeplinks"]},{"name":"var deeplinks: UpdateDeeplinks","description":"net.thauvin.erik.bitly.config.UpdateConfig.deeplinks","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/deeplinks.html","searchKeys":["deeplinks","var deeplinks: UpdateDeeplinks","net.thauvin.erik.bitly.config.UpdateConfig.deeplinks"]},{"name":"var domain: String","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.domain","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/domain.html","searchKeys":["domain","var domain: String","net.thauvin.erik.bitly.config.CreateConfig.Builder.domain"]},{"name":"var domain: String","description":"net.thauvin.erik.bitly.config.CreateConfig.domain","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/domain.html","searchKeys":["domain","var domain: String","net.thauvin.erik.bitly.config.CreateConfig.domain"]},{"name":"var group_guid: String","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","var group_guid: String","net.thauvin.erik.bitly.config.CreateConfig.Builder.group_guid"]},{"name":"var 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","var group_guid: String","net.thauvin.erik.bitly.config.CreateConfig.group_guid"]},{"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 long_url: String","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.long_url","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/long_url.html","searchKeys":["long_url","var long_url: String","net.thauvin.erik.bitly.config.CreateConfig.Builder.long_url"]},{"name":"var 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","var long_url: String","net.thauvin.erik.bitly.config.CreateConfig.long_url"]},{"name":"var tags: Array","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.tags","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/tags.html","searchKeys":["tags","var tags: Array","net.thauvin.erik.bitly.config.CreateConfig.Builder.tags"]},{"name":"var tags: Array","description":"net.thauvin.erik.bitly.config.CreateConfig.tags","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/tags.html","searchKeys":["tags","var tags: Array","net.thauvin.erik.bitly.config.CreateConfig.tags"]},{"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 tags: Array","description":"net.thauvin.erik.bitly.config.UpdateConfig.tags","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/tags.html","searchKeys":["tags","var tags: Array","net.thauvin.erik.bitly.config.UpdateConfig.tags"]},{"name":"var title: String","description":"net.thauvin.erik.bitly.config.CreateConfig.Builder.title","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/-builder/title.html","searchKeys":["title","var title: String","net.thauvin.erik.bitly.config.CreateConfig.Builder.title"]},{"name":"var title: String","description":"net.thauvin.erik.bitly.config.CreateConfig.title","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-create-config/title.html","searchKeys":["title","var title: String","net.thauvin.erik.bitly.config.CreateConfig.title"]},{"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 title: String","description":"net.thauvin.erik.bitly.config.UpdateConfig.title","location":"-bitly -shorten/net.thauvin.erik.bitly.config/-update-config/title.html","searchKeys":["title","var title: String","net.thauvin.erik.bitly.config.UpdateConfig.title"]},{"name":"var toJson: Boolean","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","var toJson: Boolean","net.thauvin.erik.bitly.config.CreateConfig.Builder.toJson"]},{"name":"var 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","var toJson: Boolean","net.thauvin.erik.bitly.config.CreateConfig.toJson"]},{"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":"var 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","var toJson: Boolean","net.thauvin.erik.bitly.config.UpdateConfig.toJson"]}] diff --git a/docs/scripts/platform-content-handler.js b/docs/scripts/platform-content-handler.js index 7c5e8af..811c478 100644 --- a/docs/scripts/platform-content-handler.js +++ b/docs/scripts/platform-content-handler.js @@ -1,3 +1,7 @@ +/* + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + filteringContext = { dependencies: {}, restrictedDependencies: [], @@ -14,8 +18,6 @@ const samplesLightThemeName = 'idea' window.addEventListener('load', () => { document.querySelectorAll("div[data-platform-hinted]") .forEach(elem => elem.addEventListener('click', (event) => togglePlatformDependent(event, elem))) - document.querySelectorAll("div[tabs-section]") - .forEach(elem => elem.addEventListener('click', (event) => toggleSectionsEventHandler(event))) const filterSection = document.getElementById('filter-section') if (filterSection) { filterSection.addEventListener('click', (event) => filterButtonHandler(event)) @@ -173,19 +175,30 @@ function handleAnchor() { } function initTabs() { - document.querySelectorAll("div[tabs-section]") - .forEach(element => { - showCorrespondingTabBody(element) - element.addEventListener('click', (event) => toggleSectionsEventHandler(event)) - }) - let cached = localStorage.getItem("active-tab") - if (cached) { - let parsed = JSON.parse(cached) - let tab = document.querySelector('div[tabs-section] > button[data-togglable="' + parsed + '"]') - if (tab) { - toggleSections(tab) - } - } + // we could have only a single type of data - classlike or package + const mainContent = document.querySelector('.main-content'); + const type = mainContent ? mainContent.getAttribute("data-page-type") : null; + const localStorageKey = "active-tab-" + type; + document.querySelectorAll('div[tabs-section]').forEach(element => { + showCorrespondingTabBody(element); + element.addEventListener('click', ({target}) => { + const togglable = target ? target.getAttribute("data-togglable") : null; + if (!togglable) return; + + localStorage.setItem(localStorageKey, JSON.stringify(togglable)); + toggleSections(target); + }); + }); + + const cached = localStorage.getItem(localStorageKey); + if (!cached) return; + + const tab = document.querySelector( + 'div[tabs-section] > button[data-togglable="' + JSON.parse(cached) + '"]' + ); + if (!tab) return; + + toggleSections(tab); } function showCorrespondingTabBody(element) { @@ -289,12 +302,6 @@ function toggleSections(target) { activateTabsBody("tabs-section-body") } -function toggleSectionsEventHandler(evt) { - if (!evt.target.getAttribute("data-togglable")) return - localStorage.setItem('active-tab', JSON.stringify(evt.target.getAttribute("data-togglable"))) - toggleSections(evt.target) -} - function togglePlatformDependent(e, container) { let target = e.target if (target.tagName != 'BUTTON') return; diff --git a/docs/scripts/sourceset_dependencies.js b/docs/scripts/sourceset_dependencies.js index b3aa738..9d52f63 100644 --- a/docs/scripts/sourceset_dependencies.js +++ b/docs/scripts/sourceset_dependencies.js @@ -1 +1 @@ -sourceset_dependencies='{":dokkaHtml/main":[]}' +sourceset_dependencies='{"root/main":[]}' diff --git a/docs/scripts/symbol-parameters-wrapper_deferred.js b/docs/scripts/symbol-parameters-wrapper_deferred.js index 248d0ab..7ecae7a 100644 --- a/docs/scripts/symbol-parameters-wrapper_deferred.js +++ b/docs/scripts/symbol-parameters-wrapper_deferred.js @@ -1,83 +1,64 @@ +/* + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + // helps with some corner cases where starts working already, // but the signature is not yet long enough to be wrapped -const leftPaddingPx = 60 +(function() { + const leftPaddingPx = 60; -const symbolResizeObserver = new ResizeObserver(entries => { - entries.forEach(entry => { - const symbolElement = entry.target - symbolResizeObserver.unobserve(symbolElement) // only need it once, otherwise will be executed multiple times - wrapSymbolParameters(symbolElement); - }) -}); - -const wrapAllSymbolParameters = () => { - document.querySelectorAll("div.symbol").forEach(symbol => wrapSymbolParameters(symbol)) -} - -const wrapSymbolParameters = (symbol) => { - let parametersBlock = symbol.querySelector("span.parameters") - if (parametersBlock == null) { - return // nothing to wrap + function createNbspIndent() { + let indent = document.createElement("span"); + indent.append(document.createTextNode("\u00A0\u00A0\u00A0\u00A0")); + indent.classList.add("nbsp-indent"); + return indent; } - let symbolBlockWidth = symbol.clientWidth + function wrapSymbolParameters(entry) { + const symbol = entry.target; + const symbolBlockWidth = entry.borderBoxSize && entry.borderBoxSize[0] && entry.borderBoxSize[0].inlineSize; - // Even though the script is marked as `defer` and we wait for `DOMContentLoaded` event, - // it can happen that `symbolBlockWidth` is 0, indicating that something hasn't been loaded. - // In this case, just retry once all styles have been applied and it has been resized correctly. - if (symbolBlockWidth === 0) { - symbolResizeObserver.observe(symbol) - return + // Even though the script is marked as `defer` and we wait for `DOMContentLoaded` event, + // or if this block is a part of hidden tab, it can happen that `symbolBlockWidth` is 0, + // indicating that something hasn't been loaded. + // In this case, observer will be triggered onсe again when it will be ready. + if (symbolBlockWidth > 0) { + const node = symbol.querySelector(".parameters"); + + if (node) { + // if window resize happened and observer was triggered, reset previously wrapped + // parameters as they might not need wrapping anymore, and check again + node.classList.remove("wrapped"); + node.querySelectorAll(".parameter .nbsp-indent") + .forEach(indent => indent.remove()); + + const innerTextWidth = Array.from(symbol.children) + .filter(it => !it.classList.contains("block")) // blocks are usually on their own (like annotations), so ignore it + .map(it => it.getBoundingClientRect().width) + .reduce((a, b) => a + b, 0); + + // if signature text takes up more than a single line, wrap params for readability + if (innerTextWidth > (symbolBlockWidth - leftPaddingPx)) { + node.classList.add("wrapped"); + node.querySelectorAll(".parameter").forEach(param => { + // has to be a physical indent so that it can be copied. styles like + // paddings and `::before { content: " " }` do not work for that + param.prepend(createNbspIndent()); + }); + } + } + } } - let innerTextWidth = Array.from(symbol.children) - .filter(it => !it.classList.contains("block")) // blocks are usually on their own (like annotations), so ignore it - .map(it => it.getBoundingClientRect().width).reduce((a, b) => a + b, 0) + const symbolsObserver = new ResizeObserver(entries => entries.forEach(wrapSymbolParameters)); - // if signature text takes up more than a single line, wrap params for readability - let shouldWrapParams = innerTextWidth > (symbolBlockWidth - leftPaddingPx) - if (shouldWrapParams) { - parametersBlock.classList.add("wrapped") - parametersBlock.querySelectorAll("span.parameter").forEach(param => { - // has to be a physical indent so that it can be copied. styles like - // paddings and `::before { content: " " }` do not work for that - param.prepend(createNbspIndent()) - }) + function initHandlers() { + document.querySelectorAll("div.symbol").forEach(symbol => symbolsObserver.observe(symbol)); } -} -const createNbspIndent = () => { - let indent = document.createElement("span") - indent.append(document.createTextNode("\u00A0\u00A0\u00A0\u00A0")) - indent.classList.add("nbsp-indent") - return indent -} + if (document.readyState === 'loading') window.addEventListener('DOMContentLoaded', initHandlers); + else initHandlers(); -const resetAllSymbolParametersWrapping = () => { - document.querySelectorAll("div.symbol").forEach(symbol => resetSymbolParametersWrapping(symbol)) -} - -const resetSymbolParametersWrapping = (symbol) => { - let parameters = symbol.querySelector("span.parameters") - if (parameters != null) { - parameters.classList.remove("wrapped") - parameters.querySelectorAll("span.parameter").forEach(param => { - let indent = param.querySelector("span.nbsp-indent") - if (indent != null) indent.remove() - }) - } -} - -if (document.readyState === 'loading') { - window.addEventListener('DOMContentLoaded', () => { - wrapAllSymbolParameters() - }) -} else { - wrapAllSymbolParameters() -} - -window.onresize = event => { - // need to re-calculate if params need to be wrapped after resize - resetAllSymbolParametersWrapping() - wrapAllSymbolParameters() -} + // ToDo: Add `unobserve` if dokka will be SPA-like: + // https://github.com/w3c/csswg-drafts/issues/5155 +})(); diff --git a/docs/styles/font-jb-sans-auto.css b/docs/styles/font-jb-sans-auto.css index 95d8ef8..bdc6872 100644 --- a/docs/styles/font-jb-sans-auto.css +++ b/docs/styles/font-jb-sans-auto.css @@ -1,3 +1,7 @@ +/* + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + /* Light weight */ @font-face { font-family: 'JetBrains Sans'; diff --git a/docs/styles/logo-styles.css b/docs/styles/logo-styles.css index f3846e8..69804e4 100644 --- a/docs/styles/logo-styles.css +++ b/docs/styles/logo-styles.css @@ -1,3 +1,7 @@ +/* + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + :root { --dokka-logo-image-url: url('../images/logo-icon.svg'); --dokka-logo-height: 50px; diff --git a/docs/styles/main.css b/docs/styles/main.css index 5aa04a4..5f7781e 100644 --- a/docs/styles/main.css +++ b/docs/styles/main.css @@ -1,4 +1,6 @@ -#pages-search{cursor:pointer;border:none;border-radius:50%;background:transparent;fill:#fff;fill:var(--dark-mode-and-search-icon-color)}#pages-search:focus{outline:none}#pages-search:hover{background:var(--white-10)}.search,.search [data-test=ring-select],.search [data-test=ring-tooltip],.search [data-test=ring-select_focus],.search #pages-search{display:inline-block;padding:0;margin:0;font-size:0;line-height:0}.search-hotkey-popup{background-color:var(--background-color) !important;padding:4px}.popup-wrapper{min-width:calc(100% - 322px) !important;border:1px solid rgba(255,255,255,.2) !important;background-color:#27282c !important}.popup-wrapper [class^=filterWrapper]{border-bottom:1px solid rgba(255,255,255,.2)}.popup-wrapper input{color:rgba(255,255,255,.8) !important;font-weight:normal !important}.popup-wrapper span[data-test-custom=ring-select-popup-filter-icon]{color:#fff}.popup-wrapper button[data-test=ring-input-clear]{color:#fff !important}@media screen and (max-width: 759px){.popup-wrapper{min-width:100% !important}}.template-wrapper{display:grid;height:32px;grid-template-columns:auto auto}.template-wrapper strong{color:rgba(255,255,255,.8)}.template-wrapper span{color:rgba(255,255,255,.8);line-height:32px}.template-wrapper span.template-description{color:rgba(255,255,255,.6);justify-self:end}@media screen and (max-width: 759px){.template-wrapper{display:flex;flex-direction:column;height:auto}.template-wrapper span{line-height:unset}}.template-name{justify-self:start}[class^=fade]{display:none}[class*=hover]{background-color:rgba(255,255,255,.1) !important} +/*! + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */#pages-search{cursor:pointer;border:none;border-radius:50%;background:transparent;fill:#fff;fill:var(--dark-mode-and-search-icon-color)}#pages-search:hover{background:var(--white-10)}.search,.search [data-test=ring-select],.search [data-test=ring-tooltip],.search [data-test=ring-select_focus],.search #pages-search{display:inline-block;padding:0;margin:0;font-size:0;line-height:0}.search-hotkey-popup{background-color:var(--background-color) !important;padding:4px}.popup-wrapper{min-width:calc(100% - 322px) !important;border:1px solid rgba(255,255,255,.2) !important;background-color:#27282c !important;color:rgba(255,255,255,.8)}.popup-wrapper [class^=filterWrapper]{border-bottom:1px solid rgba(255,255,255,.2)}.popup-wrapper input{color:rgba(255,255,255,.8) !important;font-weight:normal !important}.popup-wrapper span[data-test-custom=ring-select-popup-filter-icon]{color:#fff}.popup-wrapper button[data-test=ring-input-clear]{color:#fff !important}@media screen and (max-width: 759px){.popup-wrapper{min-width:100% !important}}.template-wrapper{display:grid;height:32px;grid-template-columns:auto auto}.template-wrapper strong{color:rgba(255,255,255,.8)}.template-wrapper span{color:rgba(255,255,255,.8);line-height:32px}.template-wrapper span.template-description{color:rgba(255,255,255,.6);justify-self:end}@media screen and (max-width: 759px){.template-wrapper{display:flex;flex-direction:column;height:auto}.template-wrapper span{line-height:unset}}.template-name{justify-self:start}[class^=fade]{display:none}[class*=hover]{background-color:rgba(255,255,255,.1) !important} /* stylelint-disable color-no-hex */ :root { @@ -113,6 +115,10 @@ --ring-alert-z-index: 6; } -html,.app-root{height:100%}.search-root{margin:0;padding:0;background:var(--ring-content-background-color);font-family:var(--ring-font-family);font-size:var(--ring-font-size);line-height:var(--ring-line-height)}.search-content{z-index:8} +/*! + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + *//*! + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */html,.app-root{height:100%}.search-root{margin:0;padding:0;background:var(--ring-content-background-color);font-family:var(--ring-font-family);font-size:var(--ring-font-size);line-height:var(--ring-line-height)}.search-content{z-index:8} /*# sourceMappingURL=main.css.map*/ \ No newline at end of file diff --git a/docs/styles/prism.css b/docs/styles/prism.css index 4287f6d..2d3a091 100644 --- a/docs/styles/prism.css +++ b/docs/styles/prism.css @@ -1,3 +1,7 @@ +/* + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + /* * Custom Dokka styles */ diff --git a/docs/styles/style.css b/docs/styles/style.css index 7f6e4b0..fc2b84d 100644 --- a/docs/styles/style.css +++ b/docs/styles/style.css @@ -1,3 +1,7 @@ +/* + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + @import url('./font-jb-sans-auto.css'); @import url('https://fonts.googleapis.com/css?family=JetBrains+Mono'); @@ -338,6 +342,7 @@ td:first-child { /* --- Navigation controls --- */ .navigation-controls { display: flex; + margin-left: 4px; } @media (min-width: 760px) { @@ -350,37 +355,31 @@ td:first-child { display: none; } -/* --- Navigation THEME --- */ -.navigation-controls--search { +.navigation-controls--btn { display: inline-flex; - font-size: 0; - line-height: 0; -} - -.navigation-controls--theme { - display: block; + align-items: center; + justify-content: center; + width: 40px; + height: 40px; border-radius: 50%; background-color: inherit; - margin-left: 4px; + background-position: 50% 50%; padding: 0; border: none; cursor: pointer; font-size: 0; line-height: 0; + transition: background-color 200ms ease-in-out; + will-change: background-color; } -.navigation-controls--theme::before { - height: 40px; - width: 40px; +.navigation-controls--btn:hover { + background-color: var(--white-10); } -.navigation-controls--theme:hover { - background: var(--white-10); -} - -.navigation-controls--theme::before { - display: block; - content: url("../images/theme-toggle.svg"); +.navigation-controls--theme { + background-image: url("../images/theme-toggle.svg"); + background-repeat: no-repeat; } @media (max-width: 759px) { @@ -388,7 +387,18 @@ td:first-child { display: none; } } -/* /--- Navigation THEME --- */ + +.navigation-controls--homepage { + background-image: url("../images/homepage.svg"); + background-repeat: no-repeat; + background-size: 24px 24px; +} + +@media (max-width: 759px) { + .navigation-controls--homepage { + display: none; + } +} .navigation .platform-selector:not([data-active]) { color: #fff; @@ -652,6 +662,26 @@ code.paragraph { text-decoration: line-through; } +/* Workaround for Firefox https://github.com/Kotlin/dokka/issues/3156 */ +@-moz-document url-prefix() { + .strikethrough { + position: relative; + text-decoration: none; + } + + /* complex selectors here are required to handle multiline cases */ + .strikethrough::after, .strikethrough span:after { + content: ''; + position: absolute; + top: 7px; + left: 0; + right: 0; + height: 1px; + background-color: currentColor; + z-index: 1; + } +} + .symbol:empty { padding: 0; } @@ -680,7 +710,7 @@ code { code:not(.block) { display: inline-block; - vertical-align: middle; + vertical-align: bottom; } .symbol > a { @@ -1476,4 +1506,4 @@ has only one header, and the header text is the same as the tab name, so no poin */ .main-content[data-page-type="package"] .tabs-section-body h2 { display: none; -} \ No newline at end of file +} diff --git a/examples/bld/.gitignore b/examples/bld/.gitignore new file mode 100644 index 0000000..a2805aa --- /dev/null +++ b/examples/bld/.gitignore @@ -0,0 +1,55 @@ +.gradle +.DS_Store +build +lib/bld/** +!lib/bld/bld-wrapper.jar +!lib/bld/bld-wrapper.properties +lib/compile/ +lib/runtime/ +lib/standalone/ +lib/test/ + +# IDEA ignores + +# User-specific +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Editor-based Rest Client +.idea/httpRequests \ No newline at end of file diff --git a/examples/bld/.idea/.gitignore b/examples/bld/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/examples/bld/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/examples/bld/.idea/.name b/examples/bld/.idea/.name new file mode 100644 index 0000000..4c939aa --- /dev/null +++ b/examples/bld/.idea/.name @@ -0,0 +1 @@ +bitly-shorten-examples-bld \ No newline at end of file diff --git a/examples/bld/.idea/app.iml b/examples/bld/.idea/app.iml new file mode 100644 index 0000000..2c1fe21 --- /dev/null +++ b/examples/bld/.idea/app.iml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/bld/.idea/bld.iml b/examples/bld/.idea/bld.iml new file mode 100644 index 0000000..e63e11e --- /dev/null +++ b/examples/bld/.idea/bld.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/bld/.idea/inspectionProfiles/Project_Default.xml b/examples/bld/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..1e01b48 --- /dev/null +++ b/examples/bld/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/examples/bld/.idea/libraries/bld.xml b/examples/bld/.idea/libraries/bld.xml new file mode 100644 index 0000000..7939d6b --- /dev/null +++ b/examples/bld/.idea/libraries/bld.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/examples/bld/.idea/libraries/compile.xml b/examples/bld/.idea/libraries/compile.xml new file mode 100644 index 0000000..99cc0c0 --- /dev/null +++ b/examples/bld/.idea/libraries/compile.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/bld/.idea/libraries/runtime.xml b/examples/bld/.idea/libraries/runtime.xml new file mode 100644 index 0000000..d4069f2 --- /dev/null +++ b/examples/bld/.idea/libraries/runtime.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/bld/.idea/libraries/test.xml b/examples/bld/.idea/libraries/test.xml new file mode 100644 index 0000000..57ed5ef --- /dev/null +++ b/examples/bld/.idea/libraries/test.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/bld/.idea/misc.xml b/examples/bld/.idea/misc.xml new file mode 100644 index 0000000..45feb7f --- /dev/null +++ b/examples/bld/.idea/misc.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/bld/.idea/modules.xml b/examples/bld/.idea/modules.xml new file mode 100644 index 0000000..55adcb9 --- /dev/null +++ b/examples/bld/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/examples/bld/.idea/runConfigurations/Run Tests.xml b/examples/bld/.idea/runConfigurations/Run Tests.xml new file mode 100644 index 0000000..2b503e5 --- /dev/null +++ b/examples/bld/.idea/runConfigurations/Run Tests.xml @@ -0,0 +1,9 @@ + + + + \ No newline at end of file diff --git a/examples/bld/.idea/vcs.xml b/examples/bld/.idea/vcs.xml new file mode 100644 index 0000000..b2bdec2 --- /dev/null +++ b/examples/bld/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/examples/bld/.vscode/launch.json b/examples/bld/.vscode/launch.json new file mode 100644 index 0000000..30a8889 --- /dev/null +++ b/examples/bld/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "java", + "name": "Run Tests", + "request": "launch", + "mainClass": "com.example.ExampleTest" + } + ] +} diff --git a/examples/bld/.vscode/settings.json b/examples/bld/.vscode/settings.json new file mode 100644 index 0000000..ba429d0 --- /dev/null +++ b/examples/bld/.vscode/settings.json @@ -0,0 +1,15 @@ +{ + "java.project.sourcePaths": [ + "src/main/java", + "src/main/resources", + "src/test/java", + "src/test/resources", + "src/bld/java", + "src/bld/resources" + ], + "java.configuration.updateBuildConfiguration": "automatic", + "java.project.referencedLibraries": [ + "${HOME}/.bld/dist/bld-2.2.1.jar", + "lib/**/*.jar" + ] +} diff --git a/examples/bld/README.md b/examples/bld/README.md new file mode 100644 index 0000000..3e2fe73 --- /dev/null +++ b/examples/bld/README.md @@ -0,0 +1,22 @@ +## Kotlin Example +To compile & run the Kotlin example: + +```console +./bld compile + + +./bld run --args='https://erik.thauvin.net/ https://bit.ly/2PsNMAA' +./bld run-retrieve + +``` + +## Java Example + +To compile & run the Java example: + +```console +./bld compile + +./bld run-java --args='https://erik.thauvin.net/ https://bit.ly/2PsNMAA' + +``` diff --git a/examples/bld/bld b/examples/bld/bld new file mode 100755 index 0000000..80d2986 --- /dev/null +++ b/examples/bld/bld @@ -0,0 +1,2 @@ +#!/usr/bin/env sh +java -jar "$(dirname "$0")/lib/bld/bld-wrapper.jar" "$0" --build com.example.ExampleBuild "$@" \ No newline at end of file diff --git a/examples/bld/bld.bat b/examples/bld/bld.bat new file mode 100644 index 0000000..084bb72 --- /dev/null +++ b/examples/bld/bld.bat @@ -0,0 +1,4 @@ +@echo off +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +java -jar "%DIRNAME%/lib/bld/bld-wrapper.jar" "%0" --build com.example.ExampleBuild %* \ No newline at end of file diff --git a/examples/bld/lib/bld/bld-wrapper.jar b/examples/bld/lib/bld/bld-wrapper.jar new file mode 100644 index 0000000..460a0f1 Binary files /dev/null and b/examples/bld/lib/bld/bld-wrapper.jar differ diff --git a/examples/bld/lib/bld/bld-wrapper.properties b/examples/bld/lib/bld/bld-wrapper.properties new file mode 100644 index 0000000..1f1009d --- /dev/null +++ b/examples/bld/lib/bld/bld-wrapper.properties @@ -0,0 +1,7 @@ +bld.downloadExtensionJavadoc=false +bld.downloadExtensionSources=true +bld.downloadLocation= +bld.extension-kotlin=com.uwyn.rife2:bld-kotlin:1.1.0-SNAPSHOT +bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES +bld.sourceDirectories= +bld.version=2.2.1 diff --git a/examples/bld/src/bld/java/com/example/ExampleBuild.java b/examples/bld/src/bld/java/com/example/ExampleBuild.java new file mode 100644 index 0000000..0a3eb7a --- /dev/null +++ b/examples/bld/src/bld/java/com/example/ExampleBuild.java @@ -0,0 +1,60 @@ +package com.example; + +import rife.bld.BuildCommand; +import rife.bld.extension.CompileKotlinOperation; +import rife.bld.operations.RunOperation; +import rife.bld.BaseProject; + +import java.util.List; + +import static rife.bld.dependencies.Repository.*; +import static rife.bld.dependencies.Scope.compile; + +public class ExampleBuild extends BaseProject { + public ExampleBuild() { + pkg = "com.example"; + name = "Example"; + version = version(0, 1, 0); + + mainClass = "com.example.BitlyExampleKt"; + + javaRelease = 11; + downloadSources = true; + autoDownloadPurge = true; + repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY); + + scope(compile) + .include(dependency("net.thauvin.erik:bitly-shorten:2.0.1-SNAPSHOT")) + .include(dependency("org.json:json:20250107")); + } + + public static void main(String[] args) { + new ExampleBuild().start(args); + } + + @Override + public void compile() throws Exception { + new CompileKotlinOperation() + .fromProject(this) + .execute(); + + // Also compile the Java source code + super.compile(); + } + + @BuildCommand(value = "run-java", summary = "Runs the Java example") + public void runJava() throws Exception { + new RunOperation() + .fromProject(this) + .mainClass("com.example.BitlySample") + .execute(); + } + + @BuildCommand(value = "run-retrieve", summary = "Runs the Retrieve example") + public void runRetrieve() throws Exception { + new RunOperation() + .fromProject(this) + .mainClass("com.example.BitlyRetrieveKt") + .execute(); + } +} diff --git a/examples/src/main/java/com/example/BitlySample.java b/examples/bld/src/main/java/com/example/BitlySample.java similarity index 100% rename from examples/src/main/java/com/example/BitlySample.java rename to examples/bld/src/main/java/com/example/BitlySample.java diff --git a/examples/src/main/kotlin/com/example/BitlyExample.kt b/examples/bld/src/main/kotlin/com/example/BitlyExample.kt similarity index 100% rename from examples/src/main/kotlin/com/example/BitlyExample.kt rename to examples/bld/src/main/kotlin/com/example/BitlyExample.kt diff --git a/examples/bld/src/main/kotlin/com/example/BitlyRetrieve.kt b/examples/bld/src/main/kotlin/com/example/BitlyRetrieve.kt new file mode 100644 index 0000000..2382c89 --- /dev/null +++ b/examples/bld/src/main/kotlin/com/example/BitlyRetrieve.kt @@ -0,0 +1,24 @@ +package com.example + +import net.thauvin.erik.bitly.Bitly +import net.thauvin.erik.bitly.Methods +import org.json.JSONObject +import kotlin.system.exitProcess + +fun main() { + val bitly = Bitly(/* "YOUR_API_ACCESS_TOKEN from https://bitly.is/accesstoken" */) + + // See https://dev.bitly.com/v4/#operation/getBitlink + val response = bitly.call("/bitlinks/bit.ly/380ojFd", method = Methods.GET) + + if (response.isSuccessful) { + val json = JSONObject(response.body) + println("Title : " + json.getString("title")) + println("URL : " + json.getString("long_url")) + println("By : " + json.getString("created_by")) + } else { + println("${response.message}: ${response.description} (${response.statusCode})") + } + + exitProcess(0) +} diff --git a/examples/.gitattributes b/examples/gradle/.gitattributes similarity index 100% rename from examples/.gitattributes rename to examples/gradle/.gitattributes diff --git a/examples/.gitignore b/examples/gradle/.gitignore similarity index 100% rename from examples/.gitignore rename to examples/gradle/.gitignore diff --git a/examples/gradle/.idea/.gitignore b/examples/gradle/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/examples/gradle/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/examples/gradle/.idea/.name b/examples/gradle/.idea/.name new file mode 100644 index 0000000..ea1f11e --- /dev/null +++ b/examples/gradle/.idea/.name @@ -0,0 +1 @@ +bitly-examples-gradle \ No newline at end of file diff --git a/.idea/compiler.xml b/examples/gradle/.idea/compiler.xml similarity index 100% rename from .idea/compiler.xml rename to examples/gradle/.idea/compiler.xml diff --git a/examples/gradle/.idea/gradle.xml b/examples/gradle/.idea/gradle.xml new file mode 100644 index 0000000..7d3b3e8 --- /dev/null +++ b/examples/gradle/.idea/gradle.xml @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/examples/gradle/.idea/inspectionProfiles/Project_Default.xml b/examples/gradle/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..1e01b48 --- /dev/null +++ b/examples/gradle/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/examples/gradle/.idea/jarRepositories.xml similarity index 53% rename from .idea/jarRepositories.xml rename to examples/gradle/.idea/jarRepositories.xml index 37ad52e..4e9cedf 100644 --- a/.idea/jarRepositories.xml +++ b/examples/gradle/.idea/jarRepositories.xml @@ -11,45 +11,20 @@