Class: Google::Apis::DfareportingV3_2::Language
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_2::Language
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb 
Overview
Contains information about a language that can be targeted by ads.
Instance Attribute Summary collapse
- 
  
    
      #id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Language ID of this language.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #language_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Format of language code is an ISO 639 two-letter language code optionally followed by an underscore followed by an ISO 3166 code.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of this language.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Language 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Language.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Language
Returns a new instance of Language
      7050 7051 7052  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7050 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#id ⇒ Fixnum
Language ID of this language. This is the ID used for targeting and generating
reports.
Corresponds to the JSON property id
      7030 7031 7032  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7030 def id @id end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#language".
Corresponds to the JSON property kind
      7036 7037 7038  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7036 def kind @kind end  | 
  
#language_code ⇒ String
Format of language code is an ISO 639 two-letter language code optionally
followed by an underscore followed by an ISO 3166 code. Examples are "en" for
English or "zh_CN" for Simplified Chinese.
Corresponds to the JSON property languageCode
      7043 7044 7045  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7043 def language_code @language_code end  | 
  
#name ⇒ String
Name of this language.
Corresponds to the JSON property name
      7048 7049 7050  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7048 def name @name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7055 7056 7057 7058 7059 7060  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7055 def update!(**args) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @language_code = args[:language_code] if args.key?(:language_code) @name = args[:name] if args.key?(:name) end  |