Skip to content

Commit bf5dc17

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
chore(docs): updates documentation for DPANs (#451)
1 parent 88bdc78 commit bf5dc17

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ private constructor(
7171
/** Date and time when the tokenization first occurred. UTC time zone. */
7272
fun createdAt(): OffsetDateTime = createdAt.getRequired("created_at")
7373

74-
/** The network's dynamic pan for the tokenized transaction. */
74+
/** The dynamic pan assigned to the token by the network. */
7575
fun dpan(): Optional<String> = Optional.ofNullable(dpan.getNullable("dpan"))
7676

7777
/** The status of the tokenization request */
@@ -119,7 +119,7 @@ private constructor(
119119
@ExcludeMissing
120120
fun _createdAt(): JsonField<OffsetDateTime> = createdAt
121121

122-
/** The network's dynamic pan for the tokenized transaction. */
122+
/** The dynamic pan assigned to the token by the network. */
123123
@JsonProperty("dpan") @ExcludeMissing fun _dpan(): JsonField<String> = dpan
124124

125125
/** The status of the tokenization request */
@@ -251,13 +251,13 @@ private constructor(
251251
/** Date and time when the tokenization first occurred. UTC time zone. */
252252
fun createdAt(createdAt: JsonField<OffsetDateTime>) = apply { this.createdAt = createdAt }
253253

254-
/** The network's dynamic pan for the tokenized transaction. */
254+
/** The dynamic pan assigned to the token by the network. */
255255
fun dpan(dpan: String?) = dpan(JsonField.ofNullable(dpan))
256256

257-
/** The network's dynamic pan for the tokenized transaction. */
257+
/** The dynamic pan assigned to the token by the network. */
258258
fun dpan(dpan: Optional<String>) = dpan(dpan.orElse(null))
259259

260-
/** The network's dynamic pan for the tokenized transaction. */
260+
/** The dynamic pan assigned to the token by the network. */
261261
fun dpan(dpan: JsonField<String>) = apply { this.dpan = dpan }
262262

263263
/** The status of the tokenization request */

0 commit comments

Comments
 (0)