Skip to content

Commit

Permalink
Video KDocs throws clauses
Browse files Browse the repository at this point in the history
  • Loading branch information
SMadani committed Sep 5, 2024
1 parent 2c15251 commit 5f335b7
Show file tree
Hide file tree
Showing 16 changed files with 93 additions and 19 deletions.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/Account.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import com.vonage.client.account.*
/**
* Implementation of the [Account API](https://developer.vonage.com/en/api/account).
*
* Authentication method: API key & secret.
* *Authentication method:* API key & secret.
*/
class Account internal constructor(private val client: AccountClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/Application.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import java.util.*
/**
* Implementation of the [Application API](https://developer.vonage.com/en/api/application.v2).
*
* Authentication method: API key & secret.
* *Authentication method:* API key & secret.
*/
class Application internal constructor(private val client: ApplicationClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/Conversion.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import java.util.*
/**
* Implementation of the [Conversion API](https://developer.vonage.com/en/api/Conversion).
*
* Authentication method: API key & secret.
* *Authentication method:* API key & secret.
*/
class Conversion internal constructor(private val client: ConversionClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/Messages.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import java.util.UUID
/**
* Implementation of the [Messages API](https://developer.vonage.com/en/api/messages-olympus).
*
* Authentication method: JWT (recommended), API key & secret (limited functionality).
* *Authentication method:* JWT (recommended), API key & secret (limited functionality).
*/
class Messages internal constructor(private val client: MessagesClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/NumberInsight.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import com.vonage.client.insight.*
/**
* Implementation of the [Number Insight API](https://developer.vonage.com/en/api/number-insight).
*
* Authentication method: API key & secret.
* *Authentication method:* API key & secret.
*/
class NumberInsight internal constructor(private val client: InsightClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/NumberVerification.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import java.net.URI
/**
* Implementation of the [Number Verification API](https://developer.vonage.com/en/api/camara/number-verification).
*
* Authentication method: JWT.
* *Authentication method:* JWT.
*/
class NumberVerification internal constructor(private val client: NumberVerificationClient) {
private var redirectUri: URI? = null
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/Numbers.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import com.vonage.client.numbers.*
/**
* Implementation of the [Numbers API](https://developer.vonage.com/en/api/numbers).
*
* Authentication method: API key & secret.
* *Authentication method:* API key & secret.
*/
class Numbers internal constructor(private val client: NumbersClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/Redact.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import com.vonage.client.redact.*
/**
* Implementation of the [Redact API](https://developer.vonage.com/en/api/redact).
*
* Authentication method: API key & secret.
* *Authentication method:* API key & secret.
*/
class Redact internal constructor(private val client: RedactClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/SimSwap.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import java.time.Instant
/**
* Implementation of the [Sim Swap API](https://developer.vonage.com/en/api/camara/sim-swap).
*
* Authentication method: JWT.
* *Authentication method:* JWT.
*/
class SimSwap internal constructor(private val client: SimSwapClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/Sms.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import com.vonage.client.sms.messages.*
/**
* Implementation of the [SMS API](https://developer.vonage.com/en/api/sms).
*
* Authentication method: API key & secret or signature secret.
* *Authentication method:* API key & secret or signature secret.
*/
class Sms internal constructor(private val client: SmsClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/Subaccounts.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import java.time.Instant
/**
* Implementation of the [Subaccounts API](https://developer.vonage.com/en/api/subaccounts).
*
* Authentication method: API key & secret.
* *Authentication method:* API key & secret.
*/
class Subaccounts internal constructor(private val client: SubaccountsClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/Users.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import com.vonage.client.users.*
/**
* Implementation of the [Users API](https://developer.vonage.com/en/api/application.v2#User).
*
* Authentication method: JWT.
* *Authentication method:* JWT.
*/
class Users internal constructor(private val client: UsersClient) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/Verify.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import java.util.*
/**
* Implementation of the [Verify v2 API](https://developer.vonage.com/en/api/verify.v2).
*
* Authentication method: JWT (recommended) and API key & secret (limited functionality).
* *Authentication method:* JWT (recommended) and API key & secret (limited functionality).
*/
class Verify(private val client: Verify2Client) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/vonage/client/kt/VerifyLegacy.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import com.vonage.client.verify.*
/**
* Implementation of the [Verify v1 API](https://developer.vonage.com/en/api/verify).
*
* Authentication method: API key & secret or signature secret.
* *Authentication method:* API key & secret or signature secret.
*/
class VerifyLegacy internal constructor(private val client: VerifyClient) {

Expand Down
Loading

0 comments on commit 5f335b7

Please sign in to comment.