Skip to content

Commit

Permalink
Codegen for openapi v237 (#2651)
Browse files Browse the repository at this point in the history
  • Loading branch information
pakrym-stripe committed Mar 2, 2023
1 parent 9bb6616 commit d4ad37c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v232
v237
10 changes: 10 additions & 0 deletions src/Stripe.net/Entities/Payouts/Payout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,16 @@ public Payout OriginalPayout
internal ExpandableField<Payout> InternalOriginalPayout { get; set; }
#endregion

/// <summary>
/// If <c>completed</c>, the <a
/// href="https://stripe.com/docs/api/balance_transactions/list#balance_transaction_list-payout">Balance
/// Transactions API</a> may be used to list all Balance Transactions that were paid out in
/// this payout.
/// One of: <c>completed</c>, <c>in_progress</c>, or <c>not_applicable</c>.
/// </summary>
[JsonProperty("reconciliation_status")]
public string ReconciliationStatus { get; set; }

#region Expandable ReversedBy

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions src/Stripe.net/Entities/TaxRates/TaxRate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ public class TaxRate : StripeEntity<TaxRate>, IHasId, IHasMetadata, IHasObject

/// <summary>
/// The high-level tax type, such as <c>vat</c> or <c>sales_tax</c>.
/// One of: <c>gst</c>, <c>hst</c>, <c>igst</c>, <c>jct</c>, <c>pst</c>, <c>qst</c>,
/// <c>rst</c>, <c>sales_tax</c>, or <c>vat</c>.
/// One of: <c>gst</c>, <c>hst</c>, <c>igst</c>, <c>jct</c>, <c>lease_tax</c>, <c>pst</c>,
/// <c>qst</c>, <c>rst</c>, <c>sales_tax</c>, or <c>vat</c>.
/// </summary>
[JsonProperty("tax_type")]
public string TaxType { get; set; }
Expand Down
4 changes: 2 additions & 2 deletions src/Stripe.net/Services/TaxRates/TaxRateCreateOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ public class TaxRateCreateOptions : BaseOptions, IHasMetadata

/// <summary>
/// The high-level tax type, such as <c>vat</c> or <c>sales_tax</c>.
/// One of: <c>gst</c>, <c>hst</c>, <c>igst</c>, <c>jct</c>, <c>pst</c>, <c>qst</c>,
/// <c>rst</c>, <c>sales_tax</c>, or <c>vat</c>.
/// One of: <c>gst</c>, <c>hst</c>, <c>igst</c>, <c>jct</c>, <c>lease_tax</c>, <c>pst</c>,
/// <c>qst</c>, <c>rst</c>, <c>sales_tax</c>, or <c>vat</c>.
/// </summary>
[JsonProperty("tax_type")]
public string TaxType { get; set; }
Expand Down
4 changes: 2 additions & 2 deletions src/Stripe.net/Services/TaxRates/TaxRateUpdateOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public class TaxRateUpdateOptions : BaseOptions, IHasMetadata

/// <summary>
/// The high-level tax type, such as <c>vat</c> or <c>sales_tax</c>.
/// One of: <c>gst</c>, <c>hst</c>, <c>igst</c>, <c>jct</c>, <c>pst</c>, <c>qst</c>,
/// <c>rst</c>, <c>sales_tax</c>, or <c>vat</c>.
/// One of: <c>gst</c>, <c>hst</c>, <c>igst</c>, <c>jct</c>, <c>lease_tax</c>, <c>pst</c>,
/// <c>qst</c>, <c>rst</c>, <c>sales_tax</c>, or <c>vat</c>.
/// </summary>
[JsonProperty("tax_type")]
public string TaxType { get; set; }
Expand Down

0 comments on commit d4ad37c

Please sign in to comment.