Class: Aws::TaxSettings::Types::Jurisdiction
- Inherits:
-
Struct
- Object
- Struct
- Aws::TaxSettings::Types::Jurisdiction
- 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
-
#country_code ⇒ String
The country code of the jurisdiction.
-
#state_or_region ⇒ String
The state, region, or province associated with the country of the jurisdiction, if applicable.
Instance Attribute Details
#country_code ⇒ String
The country code of the jurisdiction.
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_region ⇒ String
The state, region, or province associated with the country of the jurisdiction, if applicable.
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 |