Update generated code for v1423

This commit is contained in:
Stripe OpenAPI 2024-12-23 21:10:43 +00:00
parent fc2f62322f
commit a63e70c63f
3 changed files with 26 additions and 1 deletions

View File

@ -1 +1 @@
v1421
v1423

View File

@ -274,6 +274,15 @@ module Stripe
attr_reader :town
end
class DirectorshipDeclaration < Stripe::StripeObject
# The Unix timestamp marking when the directorship declaration attestation was made.
attr_reader :date
# The IP address from which the directorship declaration attestation was made.
attr_reader :ip
# The user-agent string from the browser where the directorship declaration attestation was made.
attr_reader :user_agent
end
class OwnershipDeclaration < Stripe::StripeObject
# The Unix timestamp marking when the beneficial owner attestation was made.
attr_reader :date
@ -305,6 +314,8 @@ module Stripe
attr_reader :address_kanji
# Whether the company's directors have been provided. This Boolean will be `true` if you've manually indicated that all directors are provided via [the `directors_provided` parameter](https://stripe.com/docs/api/accounts/update#update_account-company-directors_provided).
attr_reader :directors_provided
# Attribute for field directorship_declaration
attr_reader :directorship_declaration
# Whether the company's executives have been provided. This Boolean will be `true` if you've manually indicated that all executives are provided via [the `executives_provided` parameter](https://stripe.com/docs/api/accounts/update#update_account-company-executives_provided), or if Stripe determined that sufficient executives were provided.
attr_reader :executives_provided
# The export license ID number of the company, also referred as Import Export Code (India only).

View File

@ -357,6 +357,17 @@ module Stripe
sig { returns(T.nilable(String)) }
attr_reader :town
end
class DirectorshipDeclaration < Stripe::StripeObject
# The Unix timestamp marking when the directorship declaration attestation was made.
sig { returns(T.nilable(Integer)) }
attr_reader :date
# The IP address from which the directorship declaration attestation was made.
sig { returns(T.nilable(String)) }
attr_reader :ip
# The user-agent string from the browser where the directorship declaration attestation was made.
sig { returns(T.nilable(String)) }
attr_reader :user_agent
end
class OwnershipDeclaration < Stripe::StripeObject
# The Unix timestamp marking when the beneficial owner attestation was made.
sig { returns(T.nilable(Integer)) }
@ -399,6 +410,9 @@ module Stripe
# Whether the company's directors have been provided. This Boolean will be `true` if you've manually indicated that all directors are provided via [the `directors_provided` parameter](https://stripe.com/docs/api/accounts/update#update_account-company-directors_provided).
sig { returns(T::Boolean) }
attr_reader :directors_provided
# Attribute for field directorship_declaration
sig { returns(T.nilable(DirectorshipDeclaration)) }
attr_reader :directorship_declaration
# Whether the company's executives have been provided. This Boolean will be `true` if you've manually indicated that all executives are provided via [the `executives_provided` parameter](https://stripe.com/docs/api/accounts/update#update_account-company-executives_provided), or if Stripe determined that sufficient executives were provided.
sig { returns(T::Boolean) }
attr_reader :executives_provided