Class: Google::Apis::DfareportingV2_1::Region

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

Overview

Contains information about a region that can be targeted by ads.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Region

Returns a new instance of Region.



8595
8596
8597
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8595

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

Instance Attribute Details

#country_codeString

Country code of the country to which this region belongs. Corresponds to the JSON property countryCode

Returns:

  • (String)


8567
8568
8569
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8567

def country_code
  @country_code
end

#country_dart_idString

DART ID of the country to which this region belongs. Corresponds to the JSON property countryDartId

Returns:

  • (String)


8572
8573
8574
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8572

def country_dart_id
  @country_dart_id
end

#dart_idString

DART ID of this region. Corresponds to the JSON property dartId

Returns:

  • (String)


8577
8578
8579
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8577

def dart_id
  @dart_id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#region". Corresponds to the JSON property kind

Returns:

  • (String)


8583
8584
8585
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8583

def kind
  @kind
end

#nameString

Name of this region. Corresponds to the JSON property name

Returns:

  • (String)


8588
8589
8590
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8588

def name
  @name
end

#region_codeString

Region code. Corresponds to the JSON property regionCode

Returns:

  • (String)


8593
8594
8595
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8593

def region_code
  @region_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8600
8601
8602
8603
8604
8605
8606
8607
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8600

def update!(**args)
  @country_code = args[:country_code] unless args[:country_code].nil?
  @country_dart_id = args[:country_dart_id] unless args[:country_dart_id].nil?
  @dart_id = args[:dart_id] unless args[:dart_id].nil?
  @kind = args[:kind] unless args[:kind].nil?
  @name = args[:name] unless args[:name].nil?
  @region_code = args[:region_code] unless args[:region_code].nil?
end