Class: Vk::API::Widgets::CommentReplies
- Inherits:
-
Schema::Object
- Object
- Dry::Struct
- Schema::Object
- Vk::API::Widgets::CommentReplies
- Defined in:
- lib/vk/api/widgets/comment_replies.rb
Overview
Instance Method Summary collapse
-
#can_post ⇒ Integer
Information whether current user can comment the post.
-
#count ⇒ Integer
Comments number.
- #replies ⇒ Array
Instance Method Details
#can_post ⇒ Integer
Returns Information whether current user can comment the post.
13 |
# File 'lib/vk/api/widgets/comment_replies.rb', line 13 attribute :can_post, API::Types::Coercible::Int.optional.default(nil) |
#count ⇒ Integer
Returns Comments number.
11 |
# File 'lib/vk/api/widgets/comment_replies.rb', line 11 attribute :count, API::Types::Coercible::Int.optional.default(nil) |
#replies ⇒ Array
15 |
# File 'lib/vk/api/widgets/comment_replies.rb', line 15 attribute :replies, API::Types::Coercible::Array.member(API::Widgets::CommentRepliesItem).optional.default(nil) |