Skip to content

Commit 7afdd50

Browse files
docs(api): update category parameter description in external_payment list
1 parent 326d02d commit 7afdd50

2 files changed

Lines changed: 5 additions & 5 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: 214
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-1514911f233cb8bf0d6752c45bfa53a61b8f9b8ff215a4ea94a95f9505911000.yml
3-
openapi_spec_hash: 9820a9c9a4ff778c627041eb53fd4ee5
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-021aecb037a2f6b44056d6ebe08129e55f2dd95d8a6944c6e2c1c8e2bede56b4.yml
3+
openapi_spec_hash: 3567c6592916d79ce38248d922cd0db6
44
config_hash: 5bb913c05ebeb301ec925b16e75bb251

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ private constructor(
4040

4141
fun businessAccountToken(): Optional<String> = Optional.ofNullable(businessAccountToken)
4242

43-
/** External Payment category to be returned. */
43+
/** The external rail the funds moved on */
4444
fun category(): Optional<ExternalPaymentCategory> = Optional.ofNullable(category)
4545

4646
/**
@@ -146,7 +146,7 @@ private constructor(
146146
fun businessAccountToken(businessAccountToken: Optional<String>) =
147147
businessAccountToken(businessAccountToken.getOrNull())
148148

149-
/** External Payment category to be returned. */
149+
/** The external rail the funds moved on */
150150
fun category(category: ExternalPaymentCategory?) = apply { this.category = category }
151151

152152
/** Alias for calling [Builder.category] with `category.orElse(null)`. */
@@ -359,7 +359,7 @@ private constructor(
359359
}
360360
.build()
361361

362-
/** External Payment category to be returned. */
362+
/** The external rail the funds moved on */
363363
class ExternalPaymentCategory
364364
@JsonCreator
365365
private constructor(private val value: JsonField<String>) : Enum {

0 commit comments

Comments
 (0)