Class: Google::Apis::AndroidpublisherV3::CountryTargeting

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb

Overview

Country targeting specification.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CountryTargeting

Returns a new instance of CountryTargeting.



309
310
311
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 309

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

Instance Attribute Details

#countriesArray<String>

Countries to target, specified as two letter CLDR codes. Corresponds to the JSON property countries

Returns:

  • (Array<String>)


301
302
303
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 301

def countries
  @countries
end

#include_rest_of_worldBoolean Also known as: include_rest_of_world?

Include "rest of world" as well as explicitly targeted countries. Corresponds to the JSON property includeRestOfWorld

Returns:

  • (Boolean)


306
307
308
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 306

def include_rest_of_world
  @include_rest_of_world
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



314
315
316
317
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 314

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