From cf9372bc72fe1dd18cade819050f067e87644bbb Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 19:20:38 +0000 Subject: [PATCH] feat(api): update link to encrypted PIN block docs (#191) --- .../main/kotlin/com/lithic/api/models/CardCreateParams.kt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lithic-kotlin-core/src/main/kotlin/com/lithic/api/models/CardCreateParams.kt b/lithic-kotlin-core/src/main/kotlin/com/lithic/api/models/CardCreateParams.kt index 5d467c5d..f8d46d5b 100644 --- a/lithic-kotlin-core/src/main/kotlin/com/lithic/api/models/CardCreateParams.kt +++ b/lithic-kotlin-core/src/main/kotlin/com/lithic/api/models/CardCreateParams.kt @@ -183,8 +183,7 @@ constructor( /** * Encrypted PIN block (in base64). Only applies to cards of type `PHYSICAL` and `VIRTUAL`. - * See - * [Encrypted PIN Block](https://docs.lithic.com/docs/cards#encrypted-pin-block-enterprise). + * See [Encrypted PIN Block](https://docs.lithic.com/docs/cards#encrypted-pin-block). */ @JsonProperty("pin") fun pin(): String? = pin @@ -423,7 +422,7 @@ constructor( /** * Encrypted PIN block (in base64). Only applies to cards of type `PHYSICAL` and * `VIRTUAL`. See - * [Encrypted PIN Block](https://docs.lithic.com/docs/cards#encrypted-pin-block-enterprise). + * [Encrypted PIN Block](https://docs.lithic.com/docs/cards#encrypted-pin-block). */ @JsonProperty("pin") fun pin(pin: String) = apply { this.pin = pin } @@ -714,8 +713,7 @@ constructor( /** * Encrypted PIN block (in base64). Only applies to cards of type `PHYSICAL` and `VIRTUAL`. - * See - * [Encrypted PIN Block](https://docs.lithic.com/docs/cards#encrypted-pin-block-enterprise). + * See [Encrypted PIN Block](https://docs.lithic.com/docs/cards#encrypted-pin-block). */ fun pin(pin: String) = apply { this.pin = pin }