Class: Vk::API::Newsfeed::Methods::GetMentions
- Inherits:
-
Schema::Method
- Object
- Dry::Struct
- Schema::Method
- Vk::API::Newsfeed::Methods::GetMentions
- Defined in:
- lib/vk/api/newsfeed/methods/get_mentions.rb
Overview
Returns a list of posts on user walls in which the current user is mentioned.;
Arguments collapse
-
#count ⇒ Integer
Number of posts to return.
-
#end_time ⇒ Integer
Latest timestamp (in Unix time) of a post to return.
-
#offset ⇒ Integer
Offset needed to return a specific subset of posts.
-
#owner_id ⇒ Integer
Owner ID.
-
#start_time ⇒ Integer
Earliest timestamp (in Unix time) of a post to return.
Instance Method Summary collapse
Methods inherited from Schema::Method
Constructor Details
#initialize(arguments) ⇒ Newsfeed::Methods::GetMentions
|
# File 'lib/vk/api/newsfeed/methods/get_mentions.rb', line 15
|
Instance Method Details
#count ⇒ Integer
Returns Number of posts to return.
35 |
# File 'lib/vk/api/newsfeed/methods/get_mentions.rb', line 35 attribute :count, API::Types::Coercible::Int.optional.default(20) |
#end_time ⇒ Integer
Returns Latest timestamp (in Unix time) of a post to return. By default, the current time.;.
31 |
# File 'lib/vk/api/newsfeed/methods/get_mentions.rb', line 31 attribute :end_time, API::Types::Coercible::Int.optional.default(nil) |
#offset ⇒ Integer
Returns Offset needed to return a specific subset of posts.
33 |
# File 'lib/vk/api/newsfeed/methods/get_mentions.rb', line 33 attribute :offset, API::Types::Coercible::Int.optional.default(nil) |