-
-
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
326377c
commit d6d6e09
Showing
213 changed files
with
1,974 additions
and
249 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
This file was deleted.
Oops, something went wrong.
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
4 changes: 2 additions & 2 deletions
4
src/Plaid/Cra/BaseReportCreateRequest.cs → src/Plaid/Cra/CraBaseReportCreateRequest.cs
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,8 @@ | ||
namespace Going.Plaid.Cra; | ||
|
||
/// <summary> | ||
/// <para>CraBaseReportCreateResponse defines the response schema for <c>cra/base_report/create</c></para> | ||
/// </summary> | ||
public record CraBaseReportCreateResponse : ResponseBase | ||
{ | ||
} |
4 changes: 2 additions & 2 deletions
4
src/Plaid/Cra/BaseReportGetRequest.cs → src/Plaid/Cra/CraBaseReportGetRequest.cs
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
14 changes: 0 additions & 14 deletions
14
src/Plaid/Cra/CraCheckReportNetworkAttributesGetResponse.cs
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...CheckReportNetworkAttributesGetRequest.cs → ...raCheckReportNetworkInsightsGetRequest.cs
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,14 @@ | ||
namespace Going.Plaid.Cra; | ||
|
||
/// <summary> | ||
/// <para>CraCheckReportNetworkInsightsGetResponse defines the response schema for <c>/cra/check_report/network_attributes/get</c>.</para> | ||
/// </summary> | ||
public record CraCheckReportNetworkInsightsGetResponse : ResponseBase | ||
{ | ||
/// <summary> | ||
/// <para>Contains data for the CRA Network Attributes Report.</para> | ||
/// </summary> | ||
[JsonPropertyName("report")] | ||
public Entity.CraNetworkInsightsReport Report { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace Going.Plaid.Cra; | ||
|
||
/// <summary> | ||
/// <para>CraMonitoringInsightsGetRequest defines the request schema for <c>/cra/monitoring_insights/get</c></para> | ||
/// </summary> | ||
public partial class CraMonitoringInsightsGetRequest : RequestBase | ||
{ | ||
/// <summary> | ||
/// <para>The user token associated with the User data is being requested for.</para> | ||
/// </summary> | ||
[JsonPropertyName("user_token")] | ||
public string UserToken { 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,14 @@ | ||
namespace Going.Plaid.Cra; | ||
|
||
/// <summary> | ||
/// <para>CraMonitoringInsightsGetResponse defines the response schema for <c>cra/monitoring_insights/get</c></para> | ||
/// </summary> | ||
public record CraMonitoringInsightsGetResponse : ResponseBase | ||
{ | ||
/// <summary> | ||
/// <para>An array of the Monitoring Insights Item</para> | ||
/// </summary> | ||
[JsonPropertyName("items")] | ||
public IReadOnlyList<Entity.CraMonitoringInsightsItem> Items { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
namespace Going.Plaid.Cra; | ||
|
||
/// <summary> | ||
/// <para>CraMonitoringInsightsSubscribeRequest defines the request schema for <c>/cra/monitoring_insights/subscribe</c></para> | ||
/// </summary> | ||
public partial class CraMonitoringInsightsSubscribeRequest : RequestBase | ||
{ | ||
/// <summary> | ||
/// <para>The user token associated with the User data is being requested for.</para> | ||
/// </summary> | ||
[JsonPropertyName("user_token")] | ||
public string UserToken { get; set; } = default!; | ||
|
||
/// <summary> | ||
/// <para>URL to which Plaid will send Monitoring Insights webhooks, for example when the requested Monitoring Insights is ready.</para> | ||
/// </summary> | ||
[JsonPropertyName("webhook")] | ||
public string Webhook { 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,14 @@ | ||
namespace Going.Plaid.Cra; | ||
|
||
/// <summary> | ||
/// <para>CraMonitoringInsightsSubscribeResponse defines the response schema for <c>cra/monitoring_insights/subscribe</c></para> | ||
/// </summary> | ||
public record CraMonitoringInsightsSubscribeResponse : ResponseBase | ||
{ | ||
/// <summary> | ||
/// <para>A unique identifier for the subscription, which can be used for troubleshooting</para> | ||
/// </summary> | ||
[JsonPropertyName("subscription_id")] | ||
public string SubscriptionId { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace Going.Plaid.Cra; | ||
|
||
/// <summary> | ||
/// <para>CraMonitoringInsightsUnsubscribeRequest defines the request schema for <c>/cra/monitoring_insights/unsubscribe</c></para> | ||
/// </summary> | ||
public partial class CraMonitoringInsightsUnsubscribeRequest : RequestBase | ||
{ | ||
/// <summary> | ||
/// <para>A unique identifier for the subscription, which can be used for troubleshooting</para> | ||
/// </summary> | ||
[JsonPropertyName("subscription_id")] | ||
public string SubscriptionId { 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,8 @@ | ||
namespace Going.Plaid.Cra; | ||
|
||
/// <summary> | ||
/// <para>CraMonitoringInsightsUnsubscribeResponse defines the response schema for <c>cra/monitoring_insights/unsubscribe</c></para> | ||
/// </summary> | ||
public record CraMonitoringInsightsUnsubscribeResponse : ResponseBase | ||
{ | ||
} |
Oops, something went wrong.