Class: Vk::API::Groups::GroupSettings
- Inherits:
-
Schema::Object
- Object
- Dry::Struct
- Schema::Object
- Vk::API::Groups::GroupSettings
- Defined in:
- lib/vk/api/groups/group_settings.rb
Overview
Instance Method Summary collapse
-
#access ⇒ Integer
Community access settings.
-
#address ⇒ String
Community's page domain.
-
#audio ⇒ Integer
Audio settings.
-
#description ⇒ String
Community description.
-
#docs ⇒ Integer
Docs settings.
-
#obscene_filter ⇒ API::Base::BoolInt
Information whether the obscene filter is enabled.
-
#obscene_stopwords ⇒ API::Base::BoolInt
Information whether the stopwords filter is enabled.
-
#obscene_words ⇒ String
The list of stop words.
-
#photos ⇒ Integer
Photos settings.
- #place ⇒ API::Base::Place
-
#rss ⇒ String
URL of the RSS feed.
-
#subject ⇒ Integer
Community subject ID.
- #subject_list ⇒ Array
-
#title ⇒ String
Community title.
-
#topics ⇒ Integer
Topics settings.
-
#video ⇒ Integer
Video settings.
-
#wall ⇒ Integer
Wall settings.
-
#website ⇒ String
Community website.
-
#wiki ⇒ Integer
Wiki settings.
Instance Method Details
#access ⇒ Integer
Returns Community access settings.
39 |
# File 'lib/vk/api/groups/group_settings.rb', line 39 attribute :access, API::Types::Coercible::Int.optional.default(nil) |
#address ⇒ String
Returns Community's page domain.
15 |
# File 'lib/vk/api/groups/group_settings.rb', line 15 attribute :address, API::Types::Coercible::String.optional.default(nil) |
#audio ⇒ Integer
Returns Audio settings.
25 |
# File 'lib/vk/api/groups/group_settings.rb', line 25 attribute :audio, API::Types::Coercible::Int.optional.default(nil) |
#description ⇒ String
Returns Community description.
13 |
# File 'lib/vk/api/groups/group_settings.rb', line 13 attribute :description, API::Types::Coercible::String.optional.default(nil) |
#docs ⇒ Integer
Returns Docs settings.
27 |
# File 'lib/vk/api/groups/group_settings.rb', line 27 attribute :docs, API::Types::Coercible::Int.optional.default(nil) |
#obscene_filter ⇒ API::Base::BoolInt
Returns Information whether the obscene filter is enabled.
33 |
# File 'lib/vk/api/groups/group_settings.rb', line 33 attribute :obscene_filter, API::Base::BoolInt.optional.default(nil) |
#obscene_stopwords ⇒ API::Base::BoolInt
Returns Information whether the stopwords filter is enabled.
35 |
# File 'lib/vk/api/groups/group_settings.rb', line 35 attribute :obscene_stopwords, API::Base::BoolInt.optional.default(nil) |
#obscene_words ⇒ String
Returns The list of stop words.
37 |
# File 'lib/vk/api/groups/group_settings.rb', line 37 attribute :obscene_words, API::Types::Coercible::String.optional.default(nil) |
#photos ⇒ Integer
Returns Photos settings.
21 |
# File 'lib/vk/api/groups/group_settings.rb', line 21 attribute :photos, API::Types::Coercible::Int.optional.default(nil) |
#place ⇒ API::Base::Place
17 |
# File 'lib/vk/api/groups/group_settings.rb', line 17 attribute :place, Dry::Types[API::Base::Place].optional.default(nil) |
#rss ⇒ String
Returns URL of the RSS feed.
45 |
# File 'lib/vk/api/groups/group_settings.rb', line 45 attribute :rss, API::Types::Coercible::String.optional.default(nil) |
#subject ⇒ Integer
Returns Community subject ID.
41 |
# File 'lib/vk/api/groups/group_settings.rb', line 41 attribute :subject, API::Types::Coercible::Int.optional.default(nil) |
#subject_list ⇒ Array
43 |
# File 'lib/vk/api/groups/group_settings.rb', line 43 attribute :subject_list, API::Types::Coercible::Array.member(API::Groups::SubjectItem).optional.default(nil) |
#title ⇒ String
Returns Community title.
11 |
# File 'lib/vk/api/groups/group_settings.rb', line 11 attribute :title, API::Types::Coercible::String.optional.default(nil) |
#topics ⇒ Integer
Returns Topics settings.
29 |
# File 'lib/vk/api/groups/group_settings.rb', line 29 attribute :topics, API::Types::Coercible::Int.optional.default(nil) |
#video ⇒ Integer
Returns Video settings.
23 |
# File 'lib/vk/api/groups/group_settings.rb', line 23 attribute :video, API::Types::Coercible::Int.optional.default(nil) |
#wall ⇒ Integer
Returns Wall settings.
19 |
# File 'lib/vk/api/groups/group_settings.rb', line 19 attribute :wall, API::Types::Coercible::Int.optional.default(nil) |