-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de23bf1
commit cd6534e
Showing
11 changed files
with
79 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
namespace Going.Plaid.Entity; | ||
|
||
/// <summary> | ||
/// <para>Information about the balance of the ledger held with Plaid.</para> | ||
/// </summary> | ||
public record TransferLedgerBalance | ||
{ | ||
/// <summary> | ||
/// <para>The amount of this balance available for use (decimal string with two digits of precision e.g. "10.00").</para> | ||
/// </summary> | ||
[JsonPropertyName("available")] | ||
public string Available { get; init; } = default!; | ||
|
||
/// <summary> | ||
/// <para>The amount of pending funds that are in processing (decimal string with two digits of precision e.g. "10.00").</para> | ||
/// </summary> | ||
[JsonPropertyName("pending")] | ||
public string Pending { get; init; } = default!; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Going.Plaid.Transfer; | ||
|
||
/// <summary> | ||
/// <para>Defines the request schema for <c>/transfer/ledger/get</c></para> | ||
/// </summary> | ||
public partial class TransferLedgerGetRequest : RequestBase | ||
{ | ||
/// <summary> | ||
/// <para>Client ID of the end customer.</para> | ||
/// </summary> | ||
[JsonPropertyName("originator_client_id")] | ||
public string? OriginatorClientId { get; set; } = default!; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Going.Plaid.Transfer; | ||
|
||
/// <summary> | ||
/// <para>Defines the response schema for <c>/transfer/ledger/get</c></para> | ||
/// </summary> | ||
public record TransferLedgerGetResponse : ResponseBase | ||
{ | ||
/// <summary> | ||
/// <para>Information about the balance of the ledger held with Plaid.</para> | ||
/// </summary> | ||
[JsonPropertyName("balance")] | ||
public Entity.TransferLedgerBalance Balance { get; init; } = default!; | ||
} |