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

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VideoMediaMetadata

Returns a new instance of VideoMediaMetadata.



2474
2475
2476
# File 'lib/google/apis/drive_v3/classes.rb', line 2474

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

Instance Attribute Details

#duration_millisFixnum

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

Returns:

  • (Fixnum)


2462
2463
2464
# File 'lib/google/apis/drive_v3/classes.rb', line 2462

def duration_millis
  @duration_millis
end

#heightFixnum

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

Returns:

  • (Fixnum)


2467
2468
2469
# File 'lib/google/apis/drive_v3/classes.rb', line 2467

def height
  @height
end

#widthFixnum

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

Returns:

  • (Fixnum)


2472
2473
2474
# File 'lib/google/apis/drive_v3/classes.rb', line 2472

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2479
2480
2481
2482
2483
# File 'lib/google/apis/drive_v3/classes.rb', line 2479

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