Class: Google::Apis::YoutubeV3::I18nRegion
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::I18nRegion
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
 generated/google/apis/youtube_v3/representations.rb,
 generated/google/apis/youtube_v3/representations.rb
Overview
A i18nRegion resource identifies a region where YouTube is available.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Etag of this resource. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID that YouTube uses to uniquely identify the i18n region. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #snippet  ⇒ Google::Apis::YoutubeV3::I18nRegionSnippet 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Basic details about an i18n region, such as region code and human-readable name. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ I18nRegion 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of I18nRegion. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ I18nRegion
Returns a new instance of I18nRegion
| 3063 3064 3065 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3063 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
| 3044 3045 3046 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3044 def etag @etag end | 
#id ⇒ String
The ID that YouTube uses to uniquely identify the i18n region.
Corresponds to the JSON property id
| 3049 3050 3051 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3049 def id @id end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
i18nRegion".
Corresponds to the JSON property kind
| 3055 3056 3057 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3055 def kind @kind end | 
#snippet ⇒ Google::Apis::YoutubeV3::I18nRegionSnippet
Basic details about an i18n region, such as region code and human-readable
name.
Corresponds to the JSON property snippet
| 3061 3062 3063 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3061 def snippet @snippet end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3068 3069 3070 3071 3072 3073 | # File 'generated/google/apis/youtube_v3/classes.rb', line 3068 def update!(**args) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @snippet = args[:snippet] if args.key?(:snippet) end |