Skip to content

Commit 3b93f6d

Browse files
chore(internal): change some comment formatting
1 parent 6843bb7 commit 3b93f6d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2052
-2061
lines changed

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

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ private constructor(
106106

107107
/**
108108
* Account state:
109-
* - `ACTIVE` - Account is able to transact and create new cards.
110-
* - `PAUSED` - Account will not be able to transact or create new cards. It can be set back to
109+
* * `ACTIVE` - Account is able to transact and create new cards.
110+
* * `PAUSED` - Account will not be able to transact or create new cards. It can be set back to
111111
* `ACTIVE`.
112-
* - `CLOSED` - Account will not be able to transact or create new cards. `CLOSED` accounts are
112+
* * `CLOSED` - Account will not be able to transact or create new cards. `CLOSED` accounts are
113113
* unable to be transitioned to `ACTIVE` or `PAUSED` states. Accounts can be manually set to
114114
* `CLOSED`, or this can be done by Lithic due to failure to pass KYB/KYC or for
115115
* risk/compliance reasons. Please contact [[email protected]](mailto:[email protected]) if
@@ -157,28 +157,28 @@ private constructor(
157157

158158
/**
159159
* Account state substatus values:
160-
* - `FRAUD_IDENTIFIED` - The account has been recognized as being created or used with stolen
160+
* * `FRAUD_IDENTIFIED` - The account has been recognized as being created or used with stolen
161161
* or fabricated identity information, encompassing both true identity theft and synthetic
162162
* identities.
163-
* - `SUSPICIOUS_ACTIVITY` - The account has exhibited suspicious behavior, such as unauthorized
163+
* * `SUSPICIOUS_ACTIVITY` - The account has exhibited suspicious behavior, such as unauthorized
164164
* access or fraudulent transactions, necessitating further investigation.
165-
* - `RISK_VIOLATION` - The account has been involved in deliberate misuse by the legitimate
165+
* * `RISK_VIOLATION` - The account has been involved in deliberate misuse by the legitimate
166166
* account holder. Examples include disputing valid transactions without cause, falsely
167167
* claiming non-receipt of goods, or engaging in intentional bust-out schemes to exploit
168168
* account services.
169-
* - `END_USER_REQUEST` - The account holder has voluntarily requested the closure of the
169+
* * `END_USER_REQUEST` - The account holder has voluntarily requested the closure of the
170170
* account for personal reasons. This encompasses situations such as bankruptcy, other
171171
* financial considerations, or the account holder's death.
172-
* - `ISSUER_REQUEST` - The issuer has initiated the closure of the account due to business
172+
* * `ISSUER_REQUEST` - The issuer has initiated the closure of the account due to business
173173
* strategy, risk management, inactivity, product changes, regulatory concerns, or violations
174174
* of terms and conditions.
175-
* - `NOT_ACTIVE` - The account has not had any transactions or payment activity within a
175+
* * `NOT_ACTIVE` - The account has not had any transactions or payment activity within a
176176
* specified period. This status applies to accounts that are paused or closed due to
177177
* inactivity.
178-
* - `INTERNAL_REVIEW` - The account is temporarily paused pending further internal review. In
178+
* * `INTERNAL_REVIEW` - The account is temporarily paused pending further internal review. In
179179
* future implementations, this status may prevent clients from activating the account via
180180
* APIs until the review is completed.
181-
* - `OTHER` - The reason for the account's current status does not fall into any of the above
181+
* * `OTHER` - The reason for the account's current status does not fall into any of the above
182182
* categories. A comment should be provided to specify the particular reason.
183183
*
184184
* @throws LithicInvalidDataException if the JSON field has an unexpected type (e.g. if the
@@ -384,10 +384,10 @@ private constructor(
384384

385385
/**
386386
* Account state:
387-
* - `ACTIVE` - Account is able to transact and create new cards.
388-
* - `PAUSED` - Account will not be able to transact or create new cards. It can be set back
387+
* * `ACTIVE` - Account is able to transact and create new cards.
388+
* * `PAUSED` - Account will not be able to transact or create new cards. It can be set back
389389
* to `ACTIVE`.
390-
* - `CLOSED` - Account will not be able to transact or create new cards. `CLOSED` accounts
390+
* * `CLOSED` - Account will not be able to transact or create new cards. `CLOSED` accounts
391391
* are unable to be transitioned to `ACTIVE` or `PAUSED` states. Accounts can be manually
392392
* set to `CLOSED`, or this can be done by Lithic due to failure to pass KYB/KYC or for
393393
* risk/compliance reasons. Please contact [[email protected]](mailto:[email protected])
@@ -479,28 +479,28 @@ private constructor(
479479

480480
/**
481481
* Account state substatus values:
482-
* - `FRAUD_IDENTIFIED` - The account has been recognized as being created or used with
482+
* * `FRAUD_IDENTIFIED` - The account has been recognized as being created or used with
483483
* stolen or fabricated identity information, encompassing both true identity theft and
484484
* synthetic identities.
485-
* - `SUSPICIOUS_ACTIVITY` - The account has exhibited suspicious behavior, such as
485+
* * `SUSPICIOUS_ACTIVITY` - The account has exhibited suspicious behavior, such as
486486
* unauthorized access or fraudulent transactions, necessitating further investigation.
487-
* - `RISK_VIOLATION` - The account has been involved in deliberate misuse by the legitimate
487+
* * `RISK_VIOLATION` - The account has been involved in deliberate misuse by the legitimate
488488
* account holder. Examples include disputing valid transactions without cause, falsely
489489
* claiming non-receipt of goods, or engaging in intentional bust-out schemes to exploit
490490
* account services.
491-
* - `END_USER_REQUEST` - The account holder has voluntarily requested the closure of the
491+
* * `END_USER_REQUEST` - The account holder has voluntarily requested the closure of the
492492
* account for personal reasons. This encompasses situations such as bankruptcy, other
493493
* financial considerations, or the account holder's death.
494-
* - `ISSUER_REQUEST` - The issuer has initiated the closure of the account due to business
494+
* * `ISSUER_REQUEST` - The issuer has initiated the closure of the account due to business
495495
* strategy, risk management, inactivity, product changes, regulatory concerns, or
496496
* violations of terms and conditions.
497-
* - `NOT_ACTIVE` - The account has not had any transactions or payment activity within a
497+
* * `NOT_ACTIVE` - The account has not had any transactions or payment activity within a
498498
* specified period. This status applies to accounts that are paused or closed due to
499499
* inactivity.
500-
* - `INTERNAL_REVIEW` - The account is temporarily paused pending further internal review.
500+
* * `INTERNAL_REVIEW` - The account is temporarily paused pending further internal review.
501501
* In future implementations, this status may prevent clients from activating the account
502502
* via APIs until the review is completed.
503-
* - `OTHER` - The reason for the account's current status does not fall into any of the
503+
* * `OTHER` - The reason for the account's current status does not fall into any of the
504504
* above categories. A comment should be provided to specify the particular reason.
505505
*/
506506
fun substatus(substatus: Substatus) = substatus(JsonField.of(substatus))
@@ -870,10 +870,10 @@ private constructor(
870870

871871
/**
872872
* Account state:
873-
* - `ACTIVE` - Account is able to transact and create new cards.
874-
* - `PAUSED` - Account will not be able to transact or create new cards. It can be set back to
873+
* * `ACTIVE` - Account is able to transact and create new cards.
874+
* * `PAUSED` - Account will not be able to transact or create new cards. It can be set back to
875875
* `ACTIVE`.
876-
* - `CLOSED` - Account will not be able to transact or create new cards. `CLOSED` accounts are
876+
* * `CLOSED` - Account will not be able to transact or create new cards. `CLOSED` accounts are
877877
* unable to be transitioned to `ACTIVE` or `PAUSED` states. Accounts can be manually set to
878878
* `CLOSED`, or this can be done by Lithic due to failure to pass KYB/KYC or for
879879
* risk/compliance reasons. Please contact [[email protected]](mailto:[email protected]) if
@@ -1306,28 +1306,28 @@ private constructor(
13061306

13071307
/**
13081308
* Account state substatus values:
1309-
* - `FRAUD_IDENTIFIED` - The account has been recognized as being created or used with stolen
1309+
* * `FRAUD_IDENTIFIED` - The account has been recognized as being created or used with stolen
13101310
* or fabricated identity information, encompassing both true identity theft and synthetic
13111311
* identities.
1312-
* - `SUSPICIOUS_ACTIVITY` - The account has exhibited suspicious behavior, such as unauthorized
1312+
* * `SUSPICIOUS_ACTIVITY` - The account has exhibited suspicious behavior, such as unauthorized
13131313
* access or fraudulent transactions, necessitating further investigation.
1314-
* - `RISK_VIOLATION` - The account has been involved in deliberate misuse by the legitimate
1314+
* * `RISK_VIOLATION` - The account has been involved in deliberate misuse by the legitimate
13151315
* account holder. Examples include disputing valid transactions without cause, falsely
13161316
* claiming non-receipt of goods, or engaging in intentional bust-out schemes to exploit
13171317
* account services.
1318-
* - `END_USER_REQUEST` - The account holder has voluntarily requested the closure of the
1318+
* * `END_USER_REQUEST` - The account holder has voluntarily requested the closure of the
13191319
* account for personal reasons. This encompasses situations such as bankruptcy, other
13201320
* financial considerations, or the account holder's death.
1321-
* - `ISSUER_REQUEST` - The issuer has initiated the closure of the account due to business
1321+
* * `ISSUER_REQUEST` - The issuer has initiated the closure of the account due to business
13221322
* strategy, risk management, inactivity, product changes, regulatory concerns, or violations
13231323
* of terms and conditions.
1324-
* - `NOT_ACTIVE` - The account has not had any transactions or payment activity within a
1324+
* * `NOT_ACTIVE` - The account has not had any transactions or payment activity within a
13251325
* specified period. This status applies to accounts that are paused or closed due to
13261326
* inactivity.
1327-
* - `INTERNAL_REVIEW` - The account is temporarily paused pending further internal review. In
1327+
* * `INTERNAL_REVIEW` - The account is temporarily paused pending further internal review. In
13281328
* future implementations, this status may prevent clients from activating the account via
13291329
* APIs until the review is completed.
1330-
* - `OTHER` - The reason for the account's current status does not fall into any of the above
1330+
* * `OTHER` - The reason for the account's current status does not fall into any of the above
13311331
* categories. A comment should be provided to specify the particular reason.
13321332
*/
13331333
class Substatus @JsonCreator private constructor(private val value: JsonField<String>) : Enum {

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

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -8753,22 +8753,22 @@ private constructor(
87538753

87548754
/**
87558755
* Event types:
8756-
* - `ACH_ORIGINATION_INITIATED` - ACH origination received and pending approval/release
8756+
* * `ACH_ORIGINATION_INITIATED` - ACH origination received and pending approval/release
87578757
* from an ACH hold.
8758-
* - `ACH_ORIGINATION_REVIEWED` - ACH origination has completed the review process.
8759-
* - `ACH_ORIGINATION_CANCELLED` - ACH origination has been cancelled.
8760-
* - `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed and sent to the
8758+
* * `ACH_ORIGINATION_REVIEWED` - ACH origination has completed the review process.
8759+
* * `ACH_ORIGINATION_CANCELLED` - ACH origination has been cancelled.
8760+
* * `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed and sent to the
87618761
* Federal Reserve.
8762-
* - `ACH_ORIGINATION_SETTLED` - ACH origination has settled.
8763-
* - `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to available
8762+
* * `ACH_ORIGINATION_SETTLED` - ACH origination has settled.
8763+
* * `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to available
87648764
* balance.
8765-
* - `ACH_RETURN_PROCESSED` - ACH origination returned by the Receiving Depository
8765+
* * `ACH_RETURN_PROCESSED` - ACH origination returned by the Receiving Depository
87668766
* Financial Institution.
8767-
* - `ACH_RECEIPT_PROCESSED` - ACH receipt pending release from an ACH holder.
8768-
* - `ACH_RETURN_INITIATED` - ACH initiated return for a ACH receipt.
8769-
* - `ACH_RECEIPT_SETTLED` - ACH receipt funds have settled.
8770-
* - `ACH_RECEIPT_RELEASED` - ACH receipt released from pending to available balance.
8771-
* - `ACH_RETURN_SETTLED` - ACH receipt return settled by the Receiving Depository
8767+
* * `ACH_RECEIPT_PROCESSED` - ACH receipt pending release from an ACH holder.
8768+
* * `ACH_RETURN_INITIATED` - ACH initiated return for a ACH receipt.
8769+
* * `ACH_RECEIPT_SETTLED` - ACH receipt funds have settled.
8770+
* * `ACH_RECEIPT_RELEASED` - ACH receipt released from pending to available balance.
8771+
* * `ACH_RETURN_SETTLED` - ACH receipt return settled by the Receiving Depository
87728772
* Financial Institution.
87738773
*
87748774
* @throws LithicInvalidDataException if the JSON field has an unexpected type or is
@@ -8940,23 +8940,23 @@ private constructor(
89408940

89418941
/**
89428942
* Event types:
8943-
* - `ACH_ORIGINATION_INITIATED` - ACH origination received and pending
8943+
* * `ACH_ORIGINATION_INITIATED` - ACH origination received and pending
89448944
* approval/release from an ACH hold.
8945-
* - `ACH_ORIGINATION_REVIEWED` - ACH origination has completed the review process.
8946-
* - `ACH_ORIGINATION_CANCELLED` - ACH origination has been cancelled.
8947-
* - `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed and sent to
8945+
* * `ACH_ORIGINATION_REVIEWED` - ACH origination has completed the review process.
8946+
* * `ACH_ORIGINATION_CANCELLED` - ACH origination has been cancelled.
8947+
* * `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed and sent to
89488948
* the Federal Reserve.
8949-
* - `ACH_ORIGINATION_SETTLED` - ACH origination has settled.
8950-
* - `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to available
8949+
* * `ACH_ORIGINATION_SETTLED` - ACH origination has settled.
8950+
* * `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to available
89518951
* balance.
8952-
* - `ACH_RETURN_PROCESSED` - ACH origination returned by the Receiving Depository
8952+
* * `ACH_RETURN_PROCESSED` - ACH origination returned by the Receiving Depository
89538953
* Financial Institution.
8954-
* - `ACH_RECEIPT_PROCESSED` - ACH receipt pending release from an ACH holder.
8955-
* - `ACH_RETURN_INITIATED` - ACH initiated return for a ACH receipt.
8956-
* - `ACH_RECEIPT_SETTLED` - ACH receipt funds have settled.
8957-
* - `ACH_RECEIPT_RELEASED` - ACH receipt released from pending to available
8954+
* * `ACH_RECEIPT_PROCESSED` - ACH receipt pending release from an ACH holder.
8955+
* * `ACH_RETURN_INITIATED` - ACH initiated return for a ACH receipt.
8956+
* * `ACH_RECEIPT_SETTLED` - ACH receipt funds have settled.
8957+
* * `ACH_RECEIPT_RELEASED` - ACH receipt released from pending to available
89588958
* balance.
8959-
* - `ACH_RETURN_SETTLED` - ACH receipt return settled by the Receiving Depository
8959+
* * `ACH_RETURN_SETTLED` - ACH receipt return settled by the Receiving Depository
89608960
* Financial Institution.
89618961
*/
89628962
fun type(type: Type) = type(JsonField.of(type))
@@ -9223,22 +9223,22 @@ private constructor(
92239223

92249224
/**
92259225
* Event types:
9226-
* - `ACH_ORIGINATION_INITIATED` - ACH origination received and pending approval/release
9226+
* * `ACH_ORIGINATION_INITIATED` - ACH origination received and pending approval/release
92279227
* from an ACH hold.
9228-
* - `ACH_ORIGINATION_REVIEWED` - ACH origination has completed the review process.
9229-
* - `ACH_ORIGINATION_CANCELLED` - ACH origination has been cancelled.
9230-
* - `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed and sent to the
9228+
* * `ACH_ORIGINATION_REVIEWED` - ACH origination has completed the review process.
9229+
* * `ACH_ORIGINATION_CANCELLED` - ACH origination has been cancelled.
9230+
* * `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed and sent to the
92319231
* Federal Reserve.
9232-
* - `ACH_ORIGINATION_SETTLED` - ACH origination has settled.
9233-
* - `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to available
9232+
* * `ACH_ORIGINATION_SETTLED` - ACH origination has settled.
9233+
* * `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to available
92349234
* balance.
9235-
* - `ACH_RETURN_PROCESSED` - ACH origination returned by the Receiving Depository
9235+
* * `ACH_RETURN_PROCESSED` - ACH origination returned by the Receiving Depository
92369236
* Financial Institution.
9237-
* - `ACH_RECEIPT_PROCESSED` - ACH receipt pending release from an ACH holder.
9238-
* - `ACH_RETURN_INITIATED` - ACH initiated return for a ACH receipt.
9239-
* - `ACH_RECEIPT_SETTLED` - ACH receipt funds have settled.
9240-
* - `ACH_RECEIPT_RELEASED` - ACH receipt released from pending to available balance.
9241-
* - `ACH_RETURN_SETTLED` - ACH receipt return settled by the Receiving Depository
9237+
* * `ACH_RECEIPT_PROCESSED` - ACH receipt pending release from an ACH holder.
9238+
* * `ACH_RETURN_INITIATED` - ACH initiated return for a ACH receipt.
9239+
* * `ACH_RECEIPT_SETTLED` - ACH receipt funds have settled.
9240+
* * `ACH_RECEIPT_RELEASED` - ACH receipt released from pending to available balance.
9241+
* * `ACH_RETURN_SETTLED` - ACH receipt return settled by the Receiving Depository
92429242
* Financial Institution.
92439243
*/
92449244
class Type @JsonCreator private constructor(private val value: JsonField<String>) :

0 commit comments

Comments
 (0)