Class: Aws::TaxSettings::Types::AccountDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::TaxSettings::Types::AccountDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-taxsettings/types.rb
Overview
An object with your ‘accountId` and TRN information.
Constant Summary collapse
- SENSITIVE =
[:account_meta_data, :tax_registration]
Instance Attribute Summary collapse
-
#account_id ⇒ String
List of unique account identifiers.
-
#account_meta_data ⇒ Types::AccountMetaData
The meta data information associated with the account.
-
#tax_inheritance_details ⇒ Types::TaxInheritanceDetails
Tax inheritance information associated with the account.
-
#tax_registration ⇒ Types::TaxRegistrationWithJurisdiction
Your TRN information.
Instance Attribute Details
#account_id ⇒ String
List of unique account identifiers.
48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 48 class AccountDetails < Struct.new( :account_id, :account_meta_data, :tax_inheritance_details, :tax_registration) SENSITIVE = [:account_meta_data, :tax_registration] include Aws::Structure end |
#account_meta_data ⇒ Types::AccountMetaData
The meta data information associated with the account.
48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 48 class AccountDetails < Struct.new( :account_id, :account_meta_data, :tax_inheritance_details, :tax_registration) SENSITIVE = [:account_meta_data, :tax_registration] include Aws::Structure end |
#tax_inheritance_details ⇒ Types::TaxInheritanceDetails
Tax inheritance information associated with the account.
48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 48 class AccountDetails < Struct.new( :account_id, :account_meta_data, :tax_inheritance_details, :tax_registration) SENSITIVE = [:account_meta_data, :tax_registration] include Aws::Structure end |
#tax_registration ⇒ Types::TaxRegistrationWithJurisdiction
Your TRN information. Instead of having full legal address, here TRN information will have jurisdiction details (for example, country code and state/region/province if applicable).
48 49 50 51 52 53 54 55 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 48 class AccountDetails < Struct.new( :account_id, :account_meta_data, :tax_inheritance_details, :tax_registration) SENSITIVE = [:account_meta_data, :tax_registration] include Aws::Structure end |