Class: Vk::API::Video::Methods::GetUserVideos
- Inherits:
-
Schema::Method
- Object
- Dry::Struct
- Schema::Method
- Vk::API::Video::Methods::GetUserVideos
- Defined in:
- lib/vk/api/video/methods/get_user_videos.rb
Overview
Returns list of videos in which the user is tagged.
Arguments collapse
-
#count ⇒ Integer
Number of videos to return.
-
#offset ⇒ Integer
Offset needed to return a specific subset of videos.
-
#user_id ⇒ Integer
User ID.
Instance Method Summary collapse
Methods inherited from Schema::Method
Constructor Details
#initialize(arguments) ⇒ Video::Methods::GetUserVideos
|
|
# File 'lib/vk/api/video/methods/get_user_videos.rb', line 15
|
Instance Method Details
#count ⇒ Integer
Returns Number of videos to return.
29 |
# File 'lib/vk/api/video/methods/get_user_videos.rb', line 29 attribute :count, API::Types::Coercible::Int.optional.default(20) |
#offset ⇒ Integer
Returns Offset needed to return a specific subset of videos.
27 |
# File 'lib/vk/api/video/methods/get_user_videos.rb', line 27 attribute :offset, API::Types::Coercible::Int.optional.default(nil) |
#user_id ⇒ Integer
Returns User ID.
25 |
# File 'lib/vk/api/video/methods/get_user_videos.rb', line 25 attribute :user_id, API::Types::Coercible::Int.optional.default(nil) |