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.



7177
7178
7179
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7177

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>)


7169
7170
7171
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7169

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)


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