Class: Google::Apis::DfareportingV2_6::Region

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v2_6/classes.rb,
generated/google/apis/dfareporting_v2_6/representations.rb,
generated/google/apis/dfareporting_v2_6/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::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Region

Returns a new instance of Region.



9207
9208
9209
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9207

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)


9179
9180
9181
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9179

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)


9184
9185
9186
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9184

def country_dart_id
  @country_dart_id
end

#dart_idString

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

Returns:

  • (String)


9189
9190
9191
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9189

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)


9195
9196
9197
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9195

def kind
  @kind
end

#nameString

Name of this region. Corresponds to the JSON property name

Returns:

  • (String)


9200
9201
9202
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9200

def name
  @name
end

#region_codeString

Region code. Corresponds to the JSON property regionCode

Returns:

  • (String)


9205
9206
9207
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9205

def region_code
  @region_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9212
9213
9214
9215
9216
9217
9218
9219
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9212

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