Class: Google::Apis::DriveV3::File::VideoMediaMetadata

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

Overview

Additional metadata about video media. This may not be available immediately upon upload.

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



1843
1844
1845
# File 'generated/google/apis/drive_v3/classes.rb', line 1843

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

Instance Attribute Details

#duration_millisFixnum

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

Returns:

  • (Fixnum)


1831
1832
1833
# File 'generated/google/apis/drive_v3/classes.rb', line 1831

def duration_millis
  @duration_millis
end

#heightFixnum

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

Returns:

  • (Fixnum)


1836
1837
1838
# File 'generated/google/apis/drive_v3/classes.rb', line 1836

def height
  @height
end

#widthFixnum

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

Returns:

  • (Fixnum)


1841
1842
1843
# File 'generated/google/apis/drive_v3/classes.rb', line 1841

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1848
1849
1850
1851
1852
# File 'generated/google/apis/drive_v3/classes.rb', line 1848

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