Class: Vk::API::Notifications::Feedback
- Inherits:
-
Schema::Object
- Object
- Dry::Struct
- Schema::Object
- Vk::API::Notifications::Feedback
- Defined in:
- lib/vk/api/notifications/feedback.rb
Overview
Instance Method Summary collapse
- #attachments ⇒ Array
-
#from_id ⇒ Integer
Reply author's ID.
- #geo ⇒ API::Base::Geo
-
#id ⇒ Integer
Item ID.
- #likes ⇒ API::Base::LikesInfo
-
#text ⇒ String
Reply text.
-
#to_id ⇒ Integer
Wall owner's ID.
Instance Method Details
#attachments ⇒ Array
21 |
# File 'lib/vk/api/notifications/feedback.rb', line 21 attribute :attachments, API::Types::Coercible::Array.member(API::Wall::WallpostAttachment).optional.default(nil) |
#from_id ⇒ Integer
Returns Reply author's ID.
15 |
# File 'lib/vk/api/notifications/feedback.rb', line 15 attribute :from_id, API::Types::Coercible::Int.optional.default(nil) |
#geo ⇒ API::Base::Geo
23 |
# File 'lib/vk/api/notifications/feedback.rb', line 23 attribute :geo, Dry::Types[API::Base::Geo].optional.default(nil) |
#id ⇒ Integer
Returns Item ID.
11 |
# File 'lib/vk/api/notifications/feedback.rb', line 11 attribute :id, API::Types::Coercible::Int.optional.default(nil) |
#likes ⇒ API::Base::LikesInfo
19 |
# File 'lib/vk/api/notifications/feedback.rb', line 19 attribute :likes, Dry::Types[API::Base::LikesInfo].optional.default(nil) |