Class: Google::Apis::DfareportingV4::Region

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



10083
10084
10085
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10083

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)


10055
10056
10057
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10055

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)


10060
10061
10062
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10060

def country_dart_id
  @country_dart_id
end

#dart_idFixnum

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

Returns:

  • (Fixnum)


10065
10066
10067
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10065

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)


10071
10072
10073
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10071

def kind
  @kind
end

#nameString

Name of this region. Corresponds to the JSON property name

Returns:

  • (String)


10076
10077
10078
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10076

def name
  @name
end

#region_codeString

Region code. Corresponds to the JSON property regionCode

Returns:

  • (String)


10081
10082
10083
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10081

def region_code
  @region_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10088
10089
10090
10091
10092
10093
10094
10095
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10088

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