Skip to content

Commit d2e9023

Browse files
chore(docs): minor edits (#289)
1 parent 3d18fe1 commit d2e9023

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ private constructor(
4848
private var hashCode: Int = 0
4949

5050
/**
51-
* Type of account/card that is being used for the transaction. Maps to EMV 3DS field acctType.
51+
* Type of account/card that is being used for the transaction. Maps to EMV 3DS field
52+
* `acctType`.
5253
*/
5354
fun accountType(): Optional<AccountType> =
5455
Optional.ofNullable(accountType.getNullable("account_type"))
@@ -136,7 +137,8 @@ private constructor(
136137
Optional.ofNullable(transaction.getNullable("transaction"))
137138

138139
/**
139-
* Type of account/card that is being used for the transaction. Maps to EMV 3DS field acctType.
140+
* Type of account/card that is being used for the transaction. Maps to EMV 3DS field
141+
* `acctType`.
140142
*/
141143
@JsonProperty("account_type") @ExcludeMissing fun _accountType() = accountType
142144

@@ -359,13 +361,13 @@ private constructor(
359361

360362
/**
361363
* Type of account/card that is being used for the transaction. Maps to EMV 3DS field
362-
* acctType.
364+
* `acctType`.
363365
*/
364366
fun accountType(accountType: AccountType) = accountType(JsonField.of(accountType))
365367

366368
/**
367369
* Type of account/card that is being used for the transaction. Maps to EMV 3DS field
368-
* acctType.
370+
* `acctType`.
369371
*/
370372
@JsonProperty("account_type")
371373
@ExcludeMissing

0 commit comments

Comments
 (0)