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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-taxsettings/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)


771
772
773
774
775
776
# File 'gems/aws-sdk-taxsettings/lib/aws-sdk-taxsettings/types.rb', line 771

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)


771
772
773
774
775
776
# File 'gems/aws-sdk-taxsettings/lib/aws-sdk-taxsettings/types.rb', line 771

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