Class: Google::Apis::DfareportingV3_3::Region

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Region

Returns a new instance of Region.



9364
9365
9366
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9364

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)


9336
9337
9338
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9336

def country_code
  @country_code
end

#country_dart_idFixnum

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

Returns:

  • (Fixnum)


9341
9342
9343
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9341

def country_dart_id
  @country_dart_id
end

#dart_idFixnum

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

Returns:

  • (Fixnum)


9346
9347
9348
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9346

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)


9352
9353
9354
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9352

def kind
  @kind
end

#nameString

Name of this region. Corresponds to the JSON property name

Returns:

  • (String)


9357
9358
9359
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9357

def name
  @name
end

#region_codeString

Region code. Corresponds to the JSON property regionCode

Returns:

  • (String)


9362
9363
9364
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9362

def region_code
  @region_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9369
9370
9371
9372
9373
9374
9375
9376
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9369

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