Class: Vk::API::Account::Info
- Inherits:
-
Schema::Object
- Object
- Dry::Struct
- Schema::Object
- Vk::API::Account::Info
- Defined in:
- lib/vk/api/account/info.rb
Overview
Instance Method Summary collapse
-
#country ⇒ String
Country code.
-
#https_required ⇒ API::Base::BoolInt
Information whether HTTPS-only is enabled.
-
#intro ⇒ API::Base::BoolInt
Information whether user has been processed intro.
-
#lang ⇒ Integer
Language ID.
-
#no_wall_replies ⇒ API::Base::BoolInt
Information whether wall comments should be hidden.
-
#own_posts_default ⇒ API::Base::BoolInt
Information whether only owners posts should be shown.
Instance Method Details
#country ⇒ String
Returns Country code.
11 |
# File 'lib/vk/api/account/info.rb', line 11 attribute :country, API::Types::Coercible::String.optional.default(nil) |
#https_required ⇒ API::Base::BoolInt
Returns Information whether HTTPS-only is enabled.
13 |
# File 'lib/vk/api/account/info.rb', line 13 attribute :https_required, API::Base::BoolInt.optional.default(nil) |
#intro ⇒ API::Base::BoolInt
Returns Information whether user has been processed intro.
19 |
# File 'lib/vk/api/account/info.rb', line 19 attribute :intro, API::Base::BoolInt.optional.default(nil) |
#lang ⇒ Integer
Returns Language ID.
21 |
# File 'lib/vk/api/account/info.rb', line 21 attribute :lang, API::Types::Coercible::Int.optional.default(nil) |
#no_wall_replies ⇒ API::Base::BoolInt
Returns Information whether wall comments should be hidden.
17 |
# File 'lib/vk/api/account/info.rb', line 17 attribute :no_wall_replies, API::Base::BoolInt.optional.default(nil) |
#own_posts_default ⇒ API::Base::BoolInt
Returns Information whether only owners posts should be shown.
15 |
# File 'lib/vk/api/account/info.rb', line 15 attribute :own_posts_default, API::Base::BoolInt.optional.default(nil) |