Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 238
openapi_spec_hash: b920ca422925bb06a6268f840371d1da
openapi_spec_hash: 9a970d9f5d1fe0aba1b390f682db71c3
config_hash: 2ae0d8aaecf01b38cbf9f9e112822c23
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ private constructor(
fun loan(): Optional<Loan> = body.loan()

/**
* The identifier for the Program that this Account falls under. Required if you operate more
* than one Program.
* The identifier for the Program that this Account falls under. Required if your Group operates
* more than one Program. List your [Programs](#programs) to find their identifiers.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
Expand Down Expand Up @@ -238,8 +238,9 @@ private constructor(
fun loan(loan: JsonField<Loan>) = apply { body.loan(loan) }

/**
* The identifier for the Program that this Account falls under. Required if you operate
* more than one Program.
* The identifier for the Program that this Account falls under. Required if your Group
* operates more than one Program. List your [Programs](#programs) to find their
* identifiers.
*/
fun programId(programId: String) = apply { body.programId(programId) }

Expand Down Expand Up @@ -466,8 +467,9 @@ private constructor(
fun loan(): Optional<Loan> = loan.getOptional("loan")

/**
* The identifier for the Program that this Account falls under. Required if you operate
* more than one Program.
* The identifier for the Program that this Account falls under. Required if your Group
* operates more than one Program. List your [Programs](#programs) to find their
* identifiers.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if
* the server responded with an unexpected value).
Expand Down Expand Up @@ -633,8 +635,9 @@ private constructor(
fun loan(loan: JsonField<Loan>) = apply { this.loan = loan }

/**
* The identifier for the Program that this Account falls under. Required if you operate
* more than one Program.
* The identifier for the Program that this Account falls under. Required if your Group
* operates more than one Program. List your [Programs](#programs) to find their
* identifiers.
*/
fun programId(programId: String) = programId(JsonField.of(programId))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7838,7 +7838,8 @@ private constructor(
fun transactionId(): String = transactionId.getRequired("transaction_id")

/**
* The identifier of the ACH Transfer associated with this return.
* The identifier of the ACH Transfer associated with this return. This matches the original
* Transaction's `source.ach_transfer_intention.transfer_id`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
Expand Down Expand Up @@ -8037,7 +8038,10 @@ private constructor(
this.transactionId = transactionId
}

/** The identifier of the ACH Transfer associated with this return. */
/**
* The identifier of the ACH Transfer associated with this return. This matches the
* original Transaction's `source.ach_transfer_intention.transfer_id`.
*/
fun transferId(transferId: String) = transferId(JsonField.of(transferId))

/**
Expand Down Expand Up @@ -9872,7 +9876,10 @@ private constructor(
/** The transfer has been rejected. */
@JvmField val REJECTED = of("rejected")

/** The transfer is complete. */
/**
* The transfer has been submitted to the Federal Reserve. When the transfer settles,
* the status remains `submitted` and the `settlement` sub-object is populated.
*/
@JvmField val SUBMITTED = of("submitted")

/** The transfer has been returned. */
Expand All @@ -9897,7 +9904,10 @@ private constructor(
REQUIRES_ATTENTION,
/** The transfer has been rejected. */
REJECTED,
/** The transfer is complete. */
/**
* The transfer has been submitted to the Federal Reserve. When the transfer settles,
* the status remains `submitted` and the `settlement` sub-object is populated.
*/
SUBMITTED,
/** The transfer has been returned. */
RETURNED,
Expand Down Expand Up @@ -9927,7 +9937,10 @@ private constructor(
REQUIRES_ATTENTION,
/** The transfer has been rejected. */
REJECTED,
/** The transfer is complete. */
/**
* The transfer has been submitted to the Federal Reserve. When the transfer settles,
* the status remains `submitted` and the `settlement` sub-object is populated.
*/
SUBMITTED,
/** The transfer has been returned. */
RETURNED,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,11 @@ private constructor(
/** The transfer has been rejected. */
@JvmField val REJECTED = of("rejected")

/** The transfer is complete. */
/**
* The transfer has been submitted to the Federal Reserve. When the transfer
* settles, the status remains `submitted` and the `settlement` sub-object is
* populated.
*/
@JvmField val SUBMITTED = of("submitted")

/** The transfer has been returned. */
Expand All @@ -664,7 +668,11 @@ private constructor(
REQUIRES_ATTENTION,
/** The transfer has been rejected. */
REJECTED,
/** The transfer is complete. */
/**
* The transfer has been submitted to the Federal Reserve. When the transfer
* settles, the status remains `submitted` and the `settlement` sub-object is
* populated.
*/
SUBMITTED,
/** The transfer has been returned. */
RETURNED,
Expand Down Expand Up @@ -694,7 +702,11 @@ private constructor(
REQUIRES_ATTENTION,
/** The transfer has been rejected. */
REJECTED,
/** The transfer is complete. */
/**
* The transfer has been submitted to the Federal Reserve. When the transfer
* settles, the status remains `submitted` and the `settlement` sub-object is
* populated.
*/
SUBMITTED,
/** The transfer has been returned. */
RETURNED,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1404,7 +1404,9 @@ private constructor(
/**
* An identification number that can be used to verify the individual's identity, such
* as a social security number. For Social Security Numbers and Individual Taxpayer
* Identification Numbers, submit nine digits with no dashes or other separators.
* Identification Numbers, submit nine digits with no dashes or other separators. When
* testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected
Expand Down Expand Up @@ -1543,7 +1545,8 @@ private constructor(
* An identification number that can be used to verify the individual's identity,
* such as a social security number. For Social Security Numbers and Individual
* Taxpayer Identification Numbers, submit nine digits with no dashes or other
* separators.
* separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
fun number(number: String) = number(JsonField.of(number))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,9 @@ private constructor(
/**
* An identification number that can be used to verify the individual's identity, such as a
* social security number. For Social Security Numbers and Individual Taxpayer
* Identification Numbers, submit nine digits with no dashes or other separators.
* Identification Numbers, submit nine digits with no dashes or other separators. When
* testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
Expand Down Expand Up @@ -1290,7 +1292,9 @@ private constructor(
/**
* An identification number that can be used to verify the individual's identity, such
* as a social security number. For Social Security Numbers and Individual Taxpayer
* Identification Numbers, submit nine digits with no dashes or other separators.
* Identification Numbers, submit nine digits with no dashes or other separators. When
* testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
fun number(number: String) = number(JsonField.of(number))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1519,7 +1519,7 @@ private constructor(

/**
* The legal identifier of the corporation. This is usually the Employer Identification
* Number (EIN).
* Number (EIN). This replaces the deprecated `tax_identifier` field.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
Expand Down Expand Up @@ -1770,7 +1770,7 @@ private constructor(

/**
* The legal identifier of the corporation. This is usually the Employer Identification
* Number (EIN).
* Number (EIN). This replaces the deprecated `tax_identifier` field.
*/
fun legalIdentifier(legalIdentifier: LegalIdentifier) =
legalIdentifier(JsonField.of(legalIdentifier))
Expand Down Expand Up @@ -3415,7 +3415,8 @@ private constructor(
* An identification number that can be used to verify the individual's
* identity, such as a social security number. For Social Security Numbers and
* Individual Taxpayer Identification Numbers, submit nine digits with no dashes
* or other separators.
* or other separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type
* or is unexpectedly missing or null (e.g. if the server responded with an
Expand Down Expand Up @@ -3564,7 +3565,8 @@ private constructor(
* An identification number that can be used to verify the individual's
* identity, such as a social security number. For Social Security Numbers
* and Individual Taxpayer Identification Numbers, submit nine digits with
* no dashes or other separators.
* no dashes or other separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
fun number(number: String) = number(JsonField.of(number))

Expand Down Expand Up @@ -5144,7 +5146,7 @@ private constructor(

/**
* The legal identifier of the corporation. This is usually the Employer Identification
* Number (EIN).
* Number (EIN). This replaces the deprecated `tax_identifier` field.
*/
class LegalIdentifier
@JsonCreator(mode = JsonCreator.Mode.DISABLED)
Expand All @@ -5164,7 +5166,8 @@ private constructor(

/**
* The legal identifier. For US Employer Identification Numbers, submit nine digits with
* no dashes or other separators.
* no dashes or other separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected
Expand Down Expand Up @@ -5239,7 +5242,8 @@ private constructor(

/**
* The legal identifier. For US Employer Identification Numbers, submit nine digits
* with no dashes or other separators.
* with no dashes or other separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
fun value(value: String) = value(JsonField.of(value))

Expand Down Expand Up @@ -7791,7 +7795,8 @@ private constructor(
* An identification number that can be used to verify the individual's identity,
* such as a social security number. For Social Security Numbers and Individual
* Taxpayer Identification Numbers, submit nine digits with no dashes or other
* separators.
* separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or
* is unexpectedly missing or null (e.g. if the server responded with an
Expand Down Expand Up @@ -7933,7 +7938,8 @@ private constructor(
* An identification number that can be used to verify the individual's
* identity, such as a social security number. For Social Security Numbers and
* Individual Taxpayer Identification Numbers, submit nine digits with no dashes
* or other separators.
* or other separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
fun number(number: String) = number(JsonField.of(number))

Expand Down Expand Up @@ -10082,7 +10088,9 @@ private constructor(
/**
* An identification number that can be used to verify the individual's identity, such
* as a social security number. For Social Security Numbers and Individual Taxpayer
* Identification Numbers, submit nine digits with no dashes or other separators.
* Identification Numbers, submit nine digits with no dashes or other separators. When
* testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected
Expand Down Expand Up @@ -10221,7 +10229,8 @@ private constructor(
* An identification number that can be used to verify the individual's identity,
* such as a social security number. For Social Security Numbers and Individual
* Taxpayer Identification Numbers, submit nine digits with no dashes or other
* separators.
* separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
fun number(number: String) = number(JsonField.of(number))

Expand Down Expand Up @@ -14848,7 +14857,8 @@ private constructor(
* An identification number that can be used to verify the individual's
* identity, such as a social security number. For Social Security Numbers and
* Individual Taxpayer Identification Numbers, submit nine digits with no dashes
* or other separators.
* or other separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type
* or is unexpectedly missing or null (e.g. if the server responded with an
Expand Down Expand Up @@ -14997,7 +15007,8 @@ private constructor(
* An identification number that can be used to verify the individual's
* identity, such as a social security number. For Social Security Numbers
* and Individual Taxpayer Identification Numbers, submit nine digits with
* no dashes or other separators.
* no dashes or other separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
fun number(number: String) = number(JsonField.of(number))

Expand Down Expand Up @@ -17194,7 +17205,8 @@ private constructor(
* An identification number that can be used to verify the individual's identity,
* such as a social security number. For Social Security Numbers and Individual
* Taxpayer Identification Numbers, submit nine digits with no dashes or other
* separators.
* separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type or
* is unexpectedly missing or null (e.g. if the server responded with an
Expand Down Expand Up @@ -17336,7 +17348,8 @@ private constructor(
* An identification number that can be used to verify the individual's
* identity, such as a social security number. For Social Security Numbers and
* Individual Taxpayer Identification Numbers, submit nine digits with no dashes
* or other separators.
* or other separators. When testing in sandbox, use one of our
* [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
fun number(number: String) = number(JsonField.of(number))

Expand Down
Loading
Loading