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: 239
openapi_spec_hash: e95ac51d0818ef7b5b5b9f7606d5891b
openapi_spec_hash: b548aecc31ddcee17c83c754a8cdf4be
config_hash: 1ca082e374ef7000e2a5971e8da740e0
2 changes: 1 addition & 1 deletion scripts/mock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,8 @@ public sealed record class Adjustment : JsonModel
}

/// <summary>
/// The amount of the adjustment.
/// The amount of the adjustment in USD cents. A positive amount is a credit
/// to your account and a negative amount is a debit.
/// </summary>
public required long Amount
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ public IReadOnlyDictionary<string, JsonElement> RawBodyData
public string? InboundCheckDepositID { get; init; }

/// <summary>
/// The adjustment amount in cents. Defaults to the amount of the Inbound Check Deposit.
/// The adjustment amount in cents. A positive amount means that the funds are
/// being returned to you by the other bank and is a credit to your account,
/// as happens for a `wrong_payee_credit`. A negative amount is a debit to your
/// account, as happens for a `late_return`. Defaults to the amount of the Inbound
/// Check Deposit.
/// </summary>
public long? Amount
{
Expand Down
3 changes: 2 additions & 1 deletion src/Increase.Api/Models/Transactions/Transaction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16421,7 +16421,8 @@ public required string AdjustedTransactionID
}

/// <summary>
/// The amount of the check adjustment.
/// The amount of the check adjustment in USD cents. A positive amount is a credit
/// to your account and a negative amount is a debit.
/// </summary>
public required long Amount
{
Expand Down