Class: Vk::API::Wall::Methods::Delete
- Inherits:
-
Schema::Method
- Object
- Dry::Struct
- Schema::Method
- Vk::API::Wall::Methods::Delete
- Defined in:
- lib/vk/api/wall/methods/delete.rb
Overview
Deletes a post from a user wall or community wall.
Arguments collapse
-
#owner_id ⇒ Integer
User ID or community ID.
-
#post_id ⇒ Integer
ID of the post to be deleted.
Instance Method Summary collapse
- #initialize(arguments) ⇒ Wall::Methods::Delete constructor
Methods inherited from Schema::Method
Constructor Details
Instance Method Details
#owner_id ⇒ Integer
Returns User ID or community ID. Use a negative value to designate a community ID.
24 |
# File 'lib/vk/api/wall/methods/delete.rb', line 24 attribute :owner_id, API::Types::Coercible::Int.optional.default(nil) |
#post_id ⇒ Integer
Returns ID of the post to be deleted.
26 |
# File 'lib/vk/api/wall/methods/delete.rb', line 26 attribute :post_id, API::Types::Coercible::Int.optional.default(nil) |