Class: Google::Apis::DfareportingV2_8::Country
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::Country
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb
Overview
Contains information about a country that can be targeted by ads.
Instance Attribute Summary collapse
- 
  
    
      #country_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Country code. 
- 
  
    
      #dart_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    DART ID of this country. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of this country. 
- 
  
    
      #ssl_enabled  ⇒ Boolean 
    
    
      (also: #ssl_enabled?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether ad serving supports secure servers in this country. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Country 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Country. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Country
Returns a new instance of Country
| 2703 2704 2705 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2703 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#country_code ⇒ String
Country code.
Corresponds to the JSON property countryCode
| 2678 2679 2680 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2678 def country_code @country_code end | 
#dart_id ⇒ Fixnum
DART ID of this country. This is the ID used for targeting and generating
reports.
Corresponds to the JSON property dartId
| 2684 2685 2686 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2684 def dart_id @dart_id end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#country".
Corresponds to the JSON property kind
| 2690 2691 2692 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2690 def kind @kind end | 
#name ⇒ String
Name of this country.
Corresponds to the JSON property name
| 2695 2696 2697 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2695 def name @name end | 
#ssl_enabled ⇒ Boolean Also known as: ssl_enabled?
Whether ad serving supports secure servers in this country.
Corresponds to the JSON property sslEnabled
| 2700 2701 2702 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2700 def ssl_enabled @ssl_enabled end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2708 2709 2710 2711 2712 2713 2714 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2708 def update!(**args) @country_code = args[:country_code] if args.key?(:country_code) @dart_id = args[:dart_id] if args.key?(:dart_id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @ssl_enabled = args[:ssl_enabled] if args.key?(:ssl_enabled) end |