Class: Vk::API::Groups::Methods::EditPlace
- Inherits:
-
Schema::Method
- Object
- Dry::Struct
- Schema::Method
- Vk::API::Groups::Methods::EditPlace
- Defined in:
- lib/vk/api/groups/methods/edit_place.rb
Overview
Edits the place in community.
Arguments collapse
-
#address ⇒ String
Place address.
-
#city_id ⇒ Integer
City ID.
-
#country_id ⇒ Integer
Country ID.
-
#group_id ⇒ Integer
Community ID.
-
#latitude ⇒ Number
Geographical latitude.
-
#longitude ⇒ Number
Geographical longitude.
-
#title ⇒ String
Place title.
Instance Method Summary collapse
Methods inherited from Schema::Method
Constructor Details
#initialize(arguments) ⇒ Groups::Methods::EditPlace
|
# File 'lib/vk/api/groups/methods/edit_place.rb', line 15
|
Instance Method Details
#address ⇒ String
Returns Place address.
33 |
# File 'lib/vk/api/groups/methods/edit_place.rb', line 33 attribute :address, API::Types::Coercible::String.optional.default(nil) |
#city_id ⇒ Integer
Returns City ID.
37 |
# File 'lib/vk/api/groups/methods/edit_place.rb', line 37 attribute :city_id, API::Types::Coercible::Int.optional.default(nil) |
#country_id ⇒ Integer
Returns Country ID.
35 |
# File 'lib/vk/api/groups/methods/edit_place.rb', line 35 attribute :country_id, API::Types::Coercible::Int.optional.default(nil) |
#group_id ⇒ Integer
Returns Community ID.
29 |
# File 'lib/vk/api/groups/methods/edit_place.rb', line 29 attribute :group_id, API::Types::Coercible::Int |
#latitude ⇒ Number
Returns Geographical latitude.
39 |
# File 'lib/vk/api/groups/methods/edit_place.rb', line 39 attribute :latitude, API::Types::Coercible::Int.optional.default(nil) |