Class: Google::Apis::DfareportingV3_0::Region
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::Region
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_0/classes.rb,
generated/google/apis/dfareporting_v3_0/representations.rb,
generated/google/apis/dfareporting_v3_0/representations.rb 
Overview
Contains information about a region that can be targeted by ads.
Instance Attribute Summary collapse
- 
  
    
      #country_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Country code of the country to which this region belongs.
 - 
  
    
      #country_dart_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
DART ID of the country to which this region belongs.
 - 
  
    
      #dart_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
DART ID of this region.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of this region.
 - 
  
    
      #region_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Region code.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Region 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Region.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Region
Returns a new instance of Region
      9490 9491 9492  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9490 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#country_code ⇒ String
Country code of the country to which this region belongs.
Corresponds to the JSON property countryCode
      9462 9463 9464  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9462 def country_code @country_code end  | 
  
#country_dart_id ⇒ Fixnum
DART ID of the country to which this region belongs.
Corresponds to the JSON property countryDartId
      9467 9468 9469  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9467 def country_dart_id @country_dart_id end  | 
  
#dart_id ⇒ Fixnum
DART ID of this region.
Corresponds to the JSON property dartId
      9472 9473 9474  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9472 def dart_id @dart_id end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#region".
Corresponds to the JSON property kind
      9478 9479 9480  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9478 def kind @kind end  | 
  
#name ⇒ String
Name of this region.
Corresponds to the JSON property name
      9483 9484 9485  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9483 def name @name end  | 
  
#region_code ⇒ String
Region code.
Corresponds to the JSON property regionCode
      9488 9489 9490  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9488 def region_code @region_code end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      9495 9496 9497 9498 9499 9500 9501 9502  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 9495 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  |