Class: Aws::TaxSettings::Types::Jurisdiction

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-taxsettings/types.rb

Overview

The jurisdiction details of the TRN information of the customers. This doesn’t contain full legal address, and contains only country code and state/region/province.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#country_codeString

The country code of the jurisdiction.

Returns:

  • (String)


940
941
942
943
944
945
# File 'lib/aws-sdk-taxsettings/types.rb', line 940

class Jurisdiction < Struct.new(
  :country_code,
  :state_or_region)
  SENSITIVE = []
  include Aws::Structure
end

#state_or_regionString

The state, region, or province associated with the country of the jurisdiction, if applicable.

Returns:

  • (String)


940
941
942
943
944
945
# File 'lib/aws-sdk-taxsettings/types.rb', line 940

class Jurisdiction < Struct.new(
  :country_code,
  :state_or_region)
  SENSITIVE = []
  include Aws::Structure
end