Class: Vk::API::Video::VideoAlbumFull
- Inherits:
-
Schema::Object
- Object
- Dry::Struct
- Schema::Object
- Vk::API::Video::VideoAlbumFull
- Defined in:
- lib/vk/api/video/video_album_full.rb
Overview
Instance Method Summary collapse
-
#count ⇒ Integer
Total number of videos in album.
-
#id ⇒ Integer
Album ID.
-
#is_system ⇒ Integer
Information whether album is system.
-
#owner_id ⇒ Integer
Album owner's ID.
-
#photo_160 ⇒ String
URL of the preview image with 160px in width.
-
#photo_320 ⇒ String
URL of the preview image with 320px in width.
-
#title ⇒ String
Album title.
-
#updated_time ⇒ Integer
Date when the album has been updated last time in Unixtime.
Instance Method Details
#count ⇒ Integer
Returns Total number of videos in album.
17 |
# File 'lib/vk/api/video/video_album_full.rb', line 17 attribute :count, API::Types::Coercible::Int |
#id ⇒ Integer
Returns Album ID.
11 |
# File 'lib/vk/api/video/video_album_full.rb', line 11 attribute :id, API::Types::Coercible::Int |
#is_system ⇒ Integer
Returns Information whether album is system.
25 |
# File 'lib/vk/api/video/video_album_full.rb', line 25 attribute :is_system, API::Types::Coercible::Int.optional.default(nil) |
#owner_id ⇒ Integer
Returns Album owner's ID.
13 |
# File 'lib/vk/api/video/video_album_full.rb', line 13 attribute :owner_id, API::Types::Coercible::Int |
#photo_160 ⇒ String
Returns URL of the preview image with 160px in width.
19 |
# File 'lib/vk/api/video/video_album_full.rb', line 19 attribute :photo_160, API::Types::Coercible::String.optional.default(nil) |
#photo_320 ⇒ String
Returns URL of the preview image with 320px in width.
21 |
# File 'lib/vk/api/video/video_album_full.rb', line 21 attribute :photo_320, API::Types::Coercible::String.optional.default(nil) |