Sha256: 4f5c9271f44c413e81c021887d5f054ac2f8b68db34e6d7c88b308853808d4e0
Contents?: true
Size: 890 Bytes
Versions: 1
Compression:
Stored size: 890 Bytes
Contents
# frozen_string_literal: true require 'vk/api/objects' require 'vk/schema/namespace' module Vk module API class Groups < Vk::Schema::Namespace # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json class GroupLink < Vk::Schema::Object # @return [Integer] Link ID attribute :id, API::Types::Coercible::Int.optional # @return [String] Link URL attribute :url, API::Types::Coercible::String.optional # @return [API::Base::BoolInt] Information whether the title can be edited attribute :edit_title, API::Base::BoolInt.optional # @return [String] Link description attribute :desc, API::Types::Coercible::String.optional # @return [API::Base::BoolInt] Information whether the image on processing attribute :image_processing, API::Base::BoolInt.optional end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vk-0.99.5.53.alpha | lib/vk/api/groups/group_link.rb |