Sha256: 9463d4833799925216475316e7ebf5c5841a87a92efe3b89daa37c8cb3925094

Contents?: true

Size: 601 Bytes

Versions: 7

Compression:

Stored size: 601 Bytes

Contents

class YouTubeG
  module Response
    class VideoSearch < YouTubeG::Record
      # the unique feed identifying url
      attr_reader :feed_id
      
      # the number of results per page
      attr_reader :max_result_count
      
      # the 1-based offset index into the full result set
      attr_reader :offset
      
      # the total number of results available for the original request
      attr_reader :total_result_count

      # the date and time at which the feed was last updated
      attr_reader :updated_at

      # the list of Video records
      attr_reader :videos
    end
  end
end

Version data entries

7 entries across 7 versions & 4 rubygems

Version Path
FiXato-youtube-g-0.4.5 lib/youtube_g/response/video_search.rb
msp-youtube-g-0.4.5 lib/youtube_g/response/video_search.rb
msp-youtube-g-0.4.6 lib/youtube_g/response/video_search.rb
msp-youtube-g-0.4.7 lib/youtube_g/response/video_search.rb
tmm1-youtube-g-0.4.5 lib/youtube_g/response/video_search.rb
youtube-g-0.4.0 lib/youtube_g/response/video_search.rb
youtube-g-0.4.1 lib/youtube_g/response/video_search.rb