Skip to content

Commit

Permalink
Update generated code for v1356
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Nov 14, 2024
1 parent 15f44e3 commit 0b1a142
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1353
v1356
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ namespace Stripe

public class FundingInstructionsBankTransferFinancialAddressSortCode : StripeEntity<FundingInstructionsBankTransferFinancialAddressSortCode>
{
[JsonProperty("account_holder_address")]
public Address AccountHolderAddress { get; set; }

/// <summary>
/// The name of the person or business that owns the bank account.
/// </summary>
Expand All @@ -17,6 +20,9 @@ public class FundingInstructionsBankTransferFinancialAddressSortCode : StripeEnt
[JsonProperty("account_number")]
public string AccountNumber { get; set; }

[JsonProperty("bank_address")]
public Address BankAddress { get; set; }

/// <summary>
/// The six-digit sort code.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ namespace Stripe

public class PaymentIntentNextActionDisplayBankTransferInstructionsFinancialAddressSortCode : StripeEntity<PaymentIntentNextActionDisplayBankTransferInstructionsFinancialAddressSortCode>
{
[JsonProperty("account_holder_address")]
public Address AccountHolderAddress { get; set; }

/// <summary>
/// The name of the person or business that owns the bank account.
/// </summary>
Expand All @@ -17,6 +20,9 @@ public class PaymentIntentNextActionDisplayBankTransferInstructionsFinancialAddr
[JsonProperty("account_number")]
public string AccountNumber { get; set; }

[JsonProperty("bank_address")]
public Address BankAddress { get; set; }

/// <summary>
/// The six-digit sort code.
/// </summary>
Expand Down

0 comments on commit 0b1a142

Please sign in to comment.