Javadoc minor cleanups

This commit is contained in:
Erik C. Thauvin 2024-09-20 16:22:11 -07:00
parent b1cf6fa475
commit e81e7f315a
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 4 additions and 0 deletions

View file

@ -53,6 +53,8 @@ class CreateConfig private constructor(builder: Builder) {
* Configures the creation parameters of a Bitlink.
*
* See the [Bit.ly API](https://dev.bitly.com/api-reference#createFullBitlink) for more information.
*
* @param long_url The long URL.
**/
data class Builder(var long_url: String) {
var domain: String = Constants.EMPTY

View file

@ -51,6 +51,8 @@ class UpdateConfig private constructor(builder: Builder) {
* Configures the update parameters of a Bitlink.
*
* See the [Bit.ly API](https://dev.bitly.com/api-reference#updateBitlink) for more information.
*
* @param bitlink A Bitlink made of the domain and hash.
**/
data class Builder(var bitlink: String) {
var title: String = Constants.EMPTY