Skip to content
Merged
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,2 +1,2 @@
configured_endpoints: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-700b81dedcec3b98097b9fa7c1ab7ea971cc812c95d7507db3a235a625660394.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5ea7ed56030d4b00596b425a2efee0459583f4e0e283daad7ebb63a0cd76d29f.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,12 @@ private constructor(
/** The status of the transfer. */
fun status(): Status = status.getRequired("status")

/** The trace number of the transfer. */
/**
* A 15 digit number set by the sending bank and transmitted to the receiving bank. Along with
* the amount, date, and originating routing number, this can be used to identify the ACH
* transfer. ACH trace numbers are not unique, but are
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
*/
fun traceNumber(): String = traceNumber.getRequired("trace_number")

/** If your transfer is returned, this will contain details of the return. */
Expand Down Expand Up @@ -326,7 +331,12 @@ private constructor(
/** The status of the transfer. */
@JsonProperty("status") @ExcludeMissing fun _status(): JsonField<Status> = status

/** The trace number of the transfer. */
/**
* A 15 digit number set by the sending bank and transmitted to the receiving bank. Along with
* the amount, date, and originating routing number, this can be used to identify the ACH
* transfer. ACH trace numbers are not unique, but are
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
*/
@JsonProperty("trace_number")
@ExcludeMissing
fun _traceNumber(): JsonField<String> = traceNumber
Expand Down Expand Up @@ -699,10 +709,20 @@ private constructor(
/** The status of the transfer. */
fun status(status: JsonField<Status>) = apply { this.status = status }

/** The trace number of the transfer. */
/**
* A 15 digit number set by the sending bank and transmitted to the receiving bank. Along
* with the amount, date, and originating routing number, this can be used to identify the
* ACH transfer. ACH trace numbers are not unique, but are
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
*/
fun traceNumber(traceNumber: String) = traceNumber(JsonField.of(traceNumber))

/** The trace number of the transfer. */
/**
* A 15 digit number set by the sending bank and transmitted to the receiving bank. Along
* with the amount, date, and originating routing number, this can be used to identify the
* ACH transfer. ACH trace numbers are not unique, but are
* [used to correlate returns](https://increase.com/documentation/ach-returns#ach-returns).
*/
fun traceNumber(traceNumber: JsonField<String>) = apply { this.traceNumber = traceNumber }

/** If your transfer is returned, this will contain details of the return. */
Expand Down