Skip to content

Commit

Permalink
Rename ParameterOptions to ReportRunParametersOptions for Reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe committed Nov 12, 2019
1 parent b993b33 commit 2be90e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Stripe.Reporting
public class ReportRunCreateOptions : BaseOptions
{
[JsonProperty("parameters")]
public ParametersOptions Parameters { get; set; }
public ReportRunParametersOptions Parameters { get; set; }

[JsonProperty("report_type")]
public string ReportType { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Stripe.Reporting
using Newtonsoft.Json;
using Stripe.Infrastructure;

public class ParametersOptions : INestedOptions
public class ReportRunParametersOptions : INestedOptions
{
[JsonProperty("columns")]
public List<string> Columns { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public ReportRunServiceTest(

this.createOptions = new ReportRunCreateOptions
{
Parameters = new ParametersOptions
Parameters = new ReportRunParametersOptions
{
ConnectedAccount = "acct_123",
IntervalStart = DateTime.Now,
Expand Down

0 comments on commit 2be90e1

Please sign in to comment.