Skip to content

Commit 0df9db9

Browse files
docs(api): update support contact from email to URL in account and card
1 parent 14f5f3b commit 0df9db9

6 files changed

Lines changed: 20 additions & 18 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 195
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-af18ede440e3b8a8b15aa3831c5add93c25934cdb037a0c6128a4c4e82fe5d4f.yml
3-
openapi_spec_hash: be9b3152e28212b685337a42ad1acf97
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-c1cfc621309e4d49899f9b055c399d7ad3eb24c05bad299322c1e03804d3d130.yml
3+
openapi_spec_hash: 799d9da903ff2e4d51fe3f1566d17c92
44
config_hash: a0a579b0564a5c18568a78f5ba2b6653

lithic-java-core/src/main/kotlin/com/lithic/api/models/Account.kt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ private constructor(
113113
* * `CLOSED` - Account will not be able to transact or create new cards. `CLOSED` accounts are
114114
* unable to be transitioned to `ACTIVE` or `PAUSED` states. Accounts can be manually set to
115115
* `CLOSED`, or this can be done by Lithic due to failure to pass KYB/KYC or for
116-
* risk/compliance reasons. Please contact [support@lithic.com](mailto:support@lithic.com) if
117-
* you believe this was done by mistake.
116+
* risk/compliance reasons. Please contact [support.lithic.com](https://support.lithic.com/)
117+
* if you believe this was done by mistake.
118118
*
119119
* @throws LithicInvalidDataException if the JSON field has an unexpected type or is
120120
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -391,8 +391,9 @@ private constructor(
391391
* * `CLOSED` - Account will not be able to transact or create new cards. `CLOSED` accounts
392392
* are unable to be transitioned to `ACTIVE` or `PAUSED` states. Accounts can be manually
393393
* set to `CLOSED`, or this can be done by Lithic due to failure to pass KYB/KYC or for
394-
* risk/compliance reasons. Please contact [support@lithic.com](mailto:support@lithic.com)
395-
* if you believe this was done by mistake.
394+
* risk/compliance reasons. Please contact
395+
* [support.lithic.com](https://support.lithic.com/) if you believe this was done by
396+
* mistake.
396397
*/
397398
fun state(state: State) = state(JsonField.of(state))
398399

@@ -898,8 +899,8 @@ private constructor(
898899
* * `CLOSED` - Account will not be able to transact or create new cards. `CLOSED` accounts are
899900
* unable to be transitioned to `ACTIVE` or `PAUSED` states. Accounts can be manually set to
900901
* `CLOSED`, or this can be done by Lithic due to failure to pass KYB/KYC or for
901-
* risk/compliance reasons. Please contact [support@lithic.com](mailto:support@lithic.com) if
902-
* you believe this was done by mistake.
902+
* risk/compliance reasons. Please contact [support.lithic.com](https://support.lithic.com/)
903+
* if you believe this was done by mistake.
903904
*/
904905
class State @JsonCreator private constructor(private val value: JsonField<String>) : Enum {
905906

lithic-java-core/src/main/kotlin/com/lithic/api/models/Card.kt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,8 @@ private constructor(
443443

444444
/**
445445
* Primary Account Number (PAN) (i.e. the card number). Customers must be PCI compliant to have
446-
* PAN returned as a field in production. Please contact support@lithic.com for questions.
446+
* PAN returned as a field in production. Please contact https://support.lithic.com/ for
447+
* questions.
447448
*
448449
* @throws LithicInvalidDataException if the JSON field has an unexpected type (e.g. if the
449450
* server responded with an unexpected value).
@@ -1253,8 +1254,8 @@ private constructor(
12531254

12541255
/**
12551256
* Primary Account Number (PAN) (i.e. the card number). Customers must be PCI compliant to
1256-
* have PAN returned as a field in production. Please contact support@lithic.com for
1257-
* questions.
1257+
* have PAN returned as a field in production. Please contact https://support.lithic.com/
1258+
* for questions.
12581259
*/
12591260
fun pan(pan: String) = pan(JsonField.of(pan))
12601261

lithic-java-core/src/main/kotlin/com/lithic/api/models/CardSearchByPanParams.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import java.util.Objects
2020

2121
/**
2222
* Get card configuration such as spend limit and state. Customers must be PCI compliant to use this
23-
* endpoint. Please contact [support@lithic.com](mailto:support@lithic.com) for questions. *Note:
23+
* endpoint. Please contact [support.lithic.com](https://support.lithic.com/) for questions. *Note:
2424
* this is a `POST` endpoint because it is more secure to send sensitive data in a request body than
2525
* in a URL.*
2626
*/

lithic-java-core/src/main/kotlin/com/lithic/api/services/async/CardServiceAsync.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -410,9 +410,9 @@ interface CardServiceAsync {
410410

411411
/**
412412
* Get card configuration such as spend limit and state. Customers must be PCI compliant to use
413-
* this endpoint. Please contact [support@lithic.com](mailto:support@lithic.com) for questions.
414-
* *Note: this is a `POST` endpoint because it is more secure to send sensitive data in a
415-
* request body than in a URL.*
413+
* this endpoint. Please contact [support.lithic.com](https://support.lithic.com/) for
414+
* questions. *Note: this is a `POST` endpoint because it is more secure to send sensitive data
415+
* in a request body than in a URL.*
416416
*/
417417
fun searchByPan(params: CardSearchByPanParams): CompletableFuture<Card> =
418418
searchByPan(params, RequestOptions.none())

lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/CardService.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -372,9 +372,9 @@ interface CardService {
372372

373373
/**
374374
* Get card configuration such as spend limit and state. Customers must be PCI compliant to use
375-
* this endpoint. Please contact [support@lithic.com](mailto:support@lithic.com) for questions.
376-
* *Note: this is a `POST` endpoint because it is more secure to send sensitive data in a
377-
* request body than in a URL.*
375+
* this endpoint. Please contact [support.lithic.com](https://support.lithic.com/) for
376+
* questions. *Note: this is a `POST` endpoint because it is more secure to send sensitive data
377+
* in a request body than in a URL.*
378378
*/
379379
fun searchByPan(params: CardSearchByPanParams): Card =
380380
searchByPan(params, RequestOptions.none())

0 commit comments

Comments
 (0)