Class: Google::Apis::AndroidpublisherV3::UserCountriesTargeting
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::UserCountriesTargeting
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
Describes an inclusive/exclusive list of country codes that module targets.
Instance Attribute Summary collapse
-
#country_codes ⇒ Array<String>
List of country codes in the two-letter CLDR territory format.
-
#exclude ⇒ Boolean
(also: #exclude?)
Indicates if the list above is exclusive.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserCountriesTargeting
constructor
A new instance of UserCountriesTargeting.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UserCountriesTargeting
Returns a new instance of UserCountriesTargeting.
7177 7178 7179 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7177 def initialize(**args) update!(**args) end |
Instance Attribute Details
#country_codes ⇒ Array<String>
List of country codes in the two-letter CLDR territory format.
Corresponds to the JSON property countryCodes
7169 7170 7171 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7169 def country_codes @country_codes end |
#exclude ⇒ Boolean Also known as: exclude?
Indicates if the list above is exclusive.
Corresponds to the JSON property exclude
7174 7175 7176 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7174 def exclude @exclude end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7182 7183 7184 7185 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7182 def update!(**args) @country_codes = args[:country_codes] if args.key?(:country_codes) @exclude = args[:exclude] if args.key?(:exclude) end |