Class: Google::Apis::AndroidpublisherV3::UserCountriesTargeting

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserCountriesTargeting

Returns a new instance of UserCountriesTargeting.



10334
10335
10336
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10334

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#country_codesArray<String>

List of country codes in the two-letter CLDR territory format. Corresponds to the JSON property countryCodes

Returns:

  • (Array<String>)


10326
10327
10328
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10326

def country_codes
  @country_codes
end

#excludeBoolean Also known as: exclude?

Indicates if the list above is exclusive. Corresponds to the JSON property exclude

Returns:

  • (Boolean)


10331
10332
10333
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10331

def exclude
  @exclude
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10339
10340
10341
10342
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10339

def update!(**args)
  @country_codes = args[:country_codes] if args.key?(:country_codes)
  @exclude = args[:exclude] if args.key?(:exclude)
end