Class: Google::Apis::YoutubeV3::InvideoPosition

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

Overview

Describes the spatial position of a visual widget inside a video. It is a union of various position types, out of which only will be set one.

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) ⇒ InvideoPosition

Returns a new instance of InvideoPosition.



3548
3549
3550
# File 'generated/google/apis/youtube_v3/classes.rb', line 3548

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

Instance Attribute Details

#corner_positionString

Describes in which corner of the video the visual widget will appear. Corresponds to the JSON property cornerPosition

Returns:

  • (String)


3541
3542
3543
# File 'generated/google/apis/youtube_v3/classes.rb', line 3541

def corner_position
  @corner_position
end

#typeString

Defines the position type. Corresponds to the JSON property type

Returns:

  • (String)


3546
3547
3548
# File 'generated/google/apis/youtube_v3/classes.rb', line 3546

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3553
3554
3555
3556
# File 'generated/google/apis/youtube_v3/classes.rb', line 3553

def update!(**args)
  @corner_position = args[:corner_position] if args.key?(:corner_position)
  @type = args[:type] if args.key?(:type)
end