Class: Google::Apis::YoutubeV3::VideoContentDetails

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

Details about the content of a YouTube Video.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VideoContentDetails

Returns a new instance of VideoContentDetails.



7583
7584
7585
# File 'generated/google/apis/youtube_v3/classes.rb', line 7583

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

Instance Attribute Details

#captionString

The value of captions indicates whether the video has captions or not. Corresponds to the JSON property caption

Returns:

  • (String)


7525
7526
7527
# File 'generated/google/apis/youtube_v3/classes.rb', line 7525

def caption
  @caption
end

#content_ratingGoogle::Apis::YoutubeV3::ContentRating

Ratings schemes. The country-specific ratings are mostly for movies and shows. LINT.IfChange Corresponds to the JSON property contentRating



7531
7532
7533
# File 'generated/google/apis/youtube_v3/classes.rb', line 7531

def content_rating
  @content_rating
end

#country_restrictionGoogle::Apis::YoutubeV3::AccessPolicy

Rights management policy for YouTube resources. Corresponds to the JSON property countryRestriction



7536
7537
7538
# File 'generated/google/apis/youtube_v3/classes.rb', line 7536

def country_restriction
  @country_restriction
end

#definitionString

The value of definition indicates whether the video is available in high definition or only in standard definition. Corresponds to the JSON property definition

Returns:

  • (String)


7542
7543
7544
# File 'generated/google/apis/youtube_v3/classes.rb', line 7542

def definition
  @definition
end

#dimensionString

The value of dimension indicates whether the video is available in 3D or in 2D. Corresponds to the JSON property dimension

Returns:

  • (String)


7547
7548
7549
# File 'generated/google/apis/youtube_v3/classes.rb', line 7547

def dimension
  @dimension
end

#durationString

The length of the video. The tag value is an ISO 8601 duration in the format PT#M#S, in which the letters PT indicate that the value specifies a period of time, and the letters M and S refer to length in minutes and seconds, respectively. The # characters preceding the M and S letters are both integers that specify the number of minutes (or seconds) of the video. For example, a value of PT15M51S indicates that the video is 15 minutes and 51 seconds long. Corresponds to the JSON property duration

Returns:

  • (String)


7557
7558
7559
# File 'generated/google/apis/youtube_v3/classes.rb', line 7557

def duration
  @duration
end

#has_custom_thumbnailBoolean Also known as: has_custom_thumbnail?

Indicates whether the video uploader has provided a custom thumbnail image for the video. This property is only visible to the video uploader. Corresponds to the JSON property hasCustomThumbnail

Returns:

  • (Boolean)


7563
7564
7565
# File 'generated/google/apis/youtube_v3/classes.rb', line 7563

def has_custom_thumbnail
  @has_custom_thumbnail
end

#licensed_contentBoolean Also known as: licensed_content?

The value of is_license_content indicates whether the video is licensed content. Corresponds to the JSON property licensedContent

Returns:

  • (Boolean)


7570
7571
7572
# File 'generated/google/apis/youtube_v3/classes.rb', line 7570

def licensed_content
  @licensed_content
end

#projectionString

Specifies the projection format of the video. Corresponds to the JSON property projection

Returns:

  • (String)


7576
7577
7578
# File 'generated/google/apis/youtube_v3/classes.rb', line 7576

def projection
  @projection
end

#region_restrictionGoogle::Apis::YoutubeV3::VideoContentDetailsRegionRestriction

DEPRECATED Region restriction of the video. Corresponds to the JSON property regionRestriction



7581
7582
7583
# File 'generated/google/apis/youtube_v3/classes.rb', line 7581

def region_restriction
  @region_restriction
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
# File 'generated/google/apis/youtube_v3/classes.rb', line 7588

def update!(**args)
  @caption = args[:caption] if args.key?(:caption)
  @content_rating = args[:content_rating] if args.key?(:content_rating)
  @country_restriction = args[:country_restriction] if args.key?(:country_restriction)
  @definition = args[:definition] if args.key?(:definition)
  @dimension = args[:dimension] if args.key?(:dimension)
  @duration = args[:duration] if args.key?(:duration)
  @has_custom_thumbnail = args[:has_custom_thumbnail] if args.key?(:has_custom_thumbnail)
  @licensed_content = args[:licensed_content] if args.key?(:licensed_content)
  @projection = args[:projection] if args.key?(:projection)
  @region_restriction = args[:region_restriction] if args.key?(:region_restriction)
end