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



1096
1097
1098
# File 'generated/google/apis/drive_v3/classes.rb', line 1096

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)


1084
1085
1086
# File 'generated/google/apis/drive_v3/classes.rb', line 1084

def duration_millis
  @duration_millis
end

#heightFixnum

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

Returns:

  • (Fixnum)


1089
1090
1091
# File 'generated/google/apis/drive_v3/classes.rb', line 1089

def height
  @height
end

#widthFixnum

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

Returns:

  • (Fixnum)


1094
1095
1096
# File 'generated/google/apis/drive_v3/classes.rb', line 1094

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1101
1102
1103
1104
1105
# File 'generated/google/apis/drive_v3/classes.rb', line 1101

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