Skip to content

Commit

Permalink
Codegen for openapi edc4cae
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe committed Mar 25, 2021
1 parent 8c5f5a5 commit c49ea52
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
5 changes: 3 additions & 2 deletions src/Stripe.net/Entities/Accounts/AccountRequirementsError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ public class AccountRequirementsError : StripeEntity<AccountRequirementsError>
/// <c>verification_failed_document_match</c>, <c>verification_failed_id_number_match</c>,
/// <c>verification_failed_keyed_identity</c>, <c>verification_failed_keyed_match</c>,
/// <c>verification_failed_name_match</c>, <c>verification_failed_other</c>,
/// <c>verification_failed_tax_id_match</c>, or
/// <c>verification_failed_tax_id_not_issued</c>.
/// <c>verification_failed_tax_id_match</c>, <c>verification_failed_tax_id_not_issued</c>,
/// <c>verification_missing_executives</c>, <c>verification_missing_owners</c>, or
/// <c>verification_requires_additional_memorandum_of_associations</c>.
/// </summary>
[JsonProperty("code")]
public string Code { get; set; }
Expand Down
3 changes: 2 additions & 1 deletion src/Stripe.net/Entities/Checkout/Sessions/Session.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ public Customer Customer
/// <c>en-GB</c>, <c>es</c>, <c>es-419</c>, <c>et</c>, <c>fi</c>, <c>fr</c>, <c>fr-CA</c>,
/// <c>hu</c>, <c>id</c>, <c>it</c>, <c>ja</c>, <c>lt</c>, <c>lv</c>, <c>ms</c>, <c>mt</c>,
/// <c>nb</c>, <c>nl</c>, <c>pl</c>, <c>pt</c>, <c>pt-BR</c>, <c>ro</c>, <c>ru</c>,
/// <c>sk</c>, <c>sl</c>, <c>sv</c>, <c>tr</c>, <c>zh</c>, <c>zh-HK</c>, or <c>zh-TW</c>.
/// <c>sk</c>, <c>sl</c>, <c>sv</c>, <c>th</c>, <c>tr</c>, <c>zh</c>, <c>zh-HK</c>, or
/// <c>zh-TW</c>.
/// </summary>
[JsonProperty("locale")]
public string Locale { get; set; }
Expand Down
5 changes: 3 additions & 2 deletions src/Stripe.net/Entities/Persons/PersonRequirementsError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ public class PersonRequirementsError : StripeEntity<PersonRequirementsError>
/// <c>verification_failed_document_match</c>, <c>verification_failed_id_number_match</c>,
/// <c>verification_failed_keyed_identity</c>, <c>verification_failed_keyed_match</c>,
/// <c>verification_failed_name_match</c>, <c>verification_failed_other</c>,
/// <c>verification_failed_tax_id_match</c>, or
/// <c>verification_failed_tax_id_not_issued</c>.
/// <c>verification_failed_tax_id_match</c>, <c>verification_failed_tax_id_not_issued</c>,
/// <c>verification_missing_executives</c>, <c>verification_missing_owners</c>, or
/// <c>verification_requires_additional_memorandum_of_associations</c>.
/// </summary>
[JsonProperty("code")]
public string Code { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ public class SessionCreateOptions : BaseOptions, IHasMetadata
/// <c>en-GB</c>, <c>es</c>, <c>es-419</c>, <c>et</c>, <c>fi</c>, <c>fr</c>, <c>fr-CA</c>,
/// <c>hu</c>, <c>id</c>, <c>it</c>, <c>ja</c>, <c>lt</c>, <c>lv</c>, <c>ms</c>, <c>mt</c>,
/// <c>nb</c>, <c>nl</c>, <c>pl</c>, <c>pt</c>, <c>pt-BR</c>, <c>ro</c>, <c>ru</c>,
/// <c>sk</c>, <c>sl</c>, <c>sv</c>, <c>tr</c>, <c>zh</c>, <c>zh-HK</c>, or <c>zh-TW</c>.
/// <c>sk</c>, <c>sl</c>, <c>sv</c>, <c>th</c>, <c>tr</c>, <c>zh</c>, <c>zh-HK</c>, or
/// <c>zh-TW</c>.
/// </summary>
[JsonProperty("locale")]
public string Locale { get; set; }
Expand Down

0 comments on commit c49ea52

Please sign in to comment.