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.



1069
1070
1071
# File 'generated/google/apis/drive_v3/classes.rb', line 1069

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)


1057
1058
1059
# File 'generated/google/apis/drive_v3/classes.rb', line 1057

def duration_millis
  @duration_millis
end

#heightFixnum

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

Returns:

  • (Fixnum)


1062
1063
1064
# File 'generated/google/apis/drive_v3/classes.rb', line 1062

def height
  @height
end

#widthFixnum

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

Returns:

  • (Fixnum)


1067
1068
1069
# File 'generated/google/apis/drive_v3/classes.rb', line 1067

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1074
1075
1076
1077
1078
# File 'generated/google/apis/drive_v3/classes.rb', line 1074

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