Class: Aws::TaxSettings::Types::AccountDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#account_idString

List of unique account identifiers.

Returns:

  • (String)


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_dataTypes::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_detailsTypes::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_registrationTypes::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