Class: Google::Apis::DfareportingV2_8::VideoFormatsListResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::VideoFormatsListResponse
 
- 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
Video Format List Response
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #video_formats  ⇒ Array<Google::Apis::DfareportingV2_8::VideoFormat> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Video format collection. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ VideoFormatsListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of VideoFormatsListResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VideoFormatsListResponse
Returns a new instance of VideoFormatsListResponse
| 11964 11965 11966 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 11964 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#videoFormatsListResponse".
Corresponds to the JSON property kind
| 11957 11958 11959 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 11957 def kind @kind end | 
#video_formats ⇒ Array<Google::Apis::DfareportingV2_8::VideoFormat>
Video format collection.
Corresponds to the JSON property videoFormats
| 11962 11963 11964 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 11962 def video_formats @video_formats end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 11969 11970 11971 11972 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 11969 def update!(**args) @kind = args[:kind] if args.key?(:kind) @video_formats = args[:video_formats] if args.key?(:video_formats) end |