Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API Updates #2435

Merged
merged 1 commit into from
Mar 9, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class SessionLineItemPriceDataOptions : INestedOptions
public SessionLineItemPriceDataProductDataOptions ProductData { get; set; }

/// <summary>
/// The recurring components of a price such as <c>interval</c> and <c>usage_type</c>.
/// The recurring components of a price such as <c>interval</c> and <c>interval_count</c>.
/// </summary>
[JsonProperty("recurring")]
public SessionLineItemPriceDataRecurringOptions Recurring { get; set; }
Expand Down
3 changes: 3 additions & 0 deletions src/Stripe.net/Services/Customers/CustomerListOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@ public class CustomerListOptions : ListOptionsWithCreated
{
[JsonProperty("email")]
public string Email { get; set; }

[JsonProperty("test_clock")]
public string TestClock { get; set; }
}
}
2 changes: 1 addition & 1 deletion src/Stripe.net/Services/Invoices/InvoiceCreateOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public class InvoiceCreateOptions : BaseOptions, IHasMetadata

/// <summary>
/// How to handle pending invoice items on invoice creation. One of <c>include</c>,
/// <c>include_and_require</c>, or <c>exclude</c>. <c>include</c> will include any pending
/// <c>exclude</c>, or <c>include_and_require</c>. <c>include</c> will include any pending
/// invoice items, and will create an empty draft invoice if no pending invoice items exist.
/// <c>include_and_require</c> will include any pending invoice items, if no pending invoice
/// items exist then the request will fail. <c>exclude</c> will always create an empty
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class InvoiceSubscriptionItemPriceDataOptions : INestedOptions
public string Product { get; set; }

/// <summary>
/// The recurring components of a price such as <c>interval</c> and <c>usage_type</c>.
/// The recurring components of a price such as <c>interval</c> and <c>interval_count</c>.
/// </summary>
[JsonProperty("recurring")]
public InvoiceSubscriptionItemPriceDataRecurringOptions Recurring { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class QuoteLineItemPriceDataOptions : INestedOptions
public string Product { get; set; }

/// <summary>
/// The recurring components of a price such as <c>interval</c> and <c>usage_type</c>.
/// The recurring components of a price such as <c>interval</c> and <c>interval_count</c>.
/// </summary>
[JsonProperty("recurring")]
public QuoteLineItemPriceDataRecurringOptions Recurring { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class SubscriptionSchedulePhaseItemPriceDataOptions : INestedOptions
public string Product { get; set; }

/// <summary>
/// The recurring components of a price such as <c>interval</c> and <c>usage_type</c>.
/// The recurring components of a price such as <c>interval</c> and <c>interval_count</c>.
/// </summary>
[JsonProperty("recurring")]
public SubscriptionSchedulePhaseItemPriceDataRecurringOptions Recurring { get; set; }
Expand Down