Class: Google::Apis::YoutubeV3::SearchResult

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

Overview

A search result contains information about a YouTube video, channel, or playlist that matches the search parameters specified in an API request. While a search result points to a uniquely identifiable resource, like a video, it does not have its own persistent data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchResult

Returns a new instance of SearchResult.



6451
6452
6453
# File 'lib/google/apis/youtube_v3/classes.rb', line 6451

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

Instance Attribute Details

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


6432
6433
6434
# File 'lib/google/apis/youtube_v3/classes.rb', line 6432

def etag
  @etag
end

#idGoogle::Apis::YoutubeV3::ResourceId

A resource id is a generic reference that points to another YouTube resource. Corresponds to the JSON property id



6437
6438
6439
# File 'lib/google/apis/youtube_v3/classes.rb', line 6437

def id
  @id
end

#kindString

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

Returns:

  • (String)


6443
6444
6445
# File 'lib/google/apis/youtube_v3/classes.rb', line 6443

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::SearchResultSnippet

Basic details about a search result, including title, description and thumbnails of the item referenced by the search result. Corresponds to the JSON property snippet



6449
6450
6451
# File 'lib/google/apis/youtube_v3/classes.rb', line 6449

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6456
6457
6458
6459
6460
6461
# File 'lib/google/apis/youtube_v3/classes.rb', line 6456

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