Class: Google::Apis::DriveV2::File::VideoMediaMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/drive_v2/classes.rb,
generated/google/apis/drive_v2/representations.rb,
generated/google/apis/drive_v2/representations.rb

Overview

Metadata about video media. This will only be present for video types.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ VideoMediaMetadata

Returns a new instance of VideoMediaMetadata.



1891
1892
1893
# File 'generated/google/apis/drive_v2/classes.rb', line 1891

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#duration_millisString

The duration of the video in milliseconds. Corresponds to the JSON property durationMillis

Returns:

  • (String)


1879
1880
1881
# File 'generated/google/apis/drive_v2/classes.rb', line 1879

def duration_millis
  @duration_millis
end

#heightFixnum

The height of the video in pixels. Corresponds to the JSON property height

Returns:

  • (Fixnum)


1884
1885
1886
# File 'generated/google/apis/drive_v2/classes.rb', line 1884

def height
  @height
end

#widthFixnum

The width of the video in pixels. Corresponds to the JSON property width

Returns:

  • (Fixnum)


1889
1890
1891
# File 'generated/google/apis/drive_v2/classes.rb', line 1889

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1896
1897
1898
1899
1900
# File 'generated/google/apis/drive_v2/classes.rb', line 1896

def update!(**args)
  @duration_millis = args[:duration_millis] if args.key?(:duration_millis)
  @height = args[:height] if args.key?(:height)
  @width = args[:width] if args.key?(:width)
end