Class: Google::Apis::YoutubeV3::Caption

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

A caption resource represents a YouTube caption track. A caption track is associated with exactly one YouTube video.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Caption

Returns a new instance of Caption.



727
728
729
# File 'generated/google/apis/youtube_v3/classes.rb', line 727

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

Instance Attribute Details

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


709
710
711
# File 'generated/google/apis/youtube_v3/classes.rb', line 709

def etag
  @etag
end

#idString

The ID that YouTube uses to uniquely identify the caption track. Corresponds to the JSON property id

Returns:

  • (String)


714
715
716
# File 'generated/google/apis/youtube_v3/classes.rb', line 714

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "youtube# caption". Corresponds to the JSON property kind

Returns:

  • (String)


720
721
722
# File 'generated/google/apis/youtube_v3/classes.rb', line 720

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::CaptionSnippet

Basic details about a caption track, such as its language and name. Corresponds to the JSON property snippet



725
726
727
# File 'generated/google/apis/youtube_v3/classes.rb', line 725

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



732
733
734
735
736
737
# File 'generated/google/apis/youtube_v3/classes.rb', line 732

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @snippet = args[:snippet] if args.key?(:snippet)
end