Sha256: c2b4973d5dcb5b4c0375683b9349f0e20ec5d754f902ab5ee3ace2ff0423e93e
Contents?: true
Size: 781 Bytes
Versions: 1
Compression:
Stored size: 781 Bytes
Contents
# frozen_string_literal: true require 'vk/api/objects' require 'vk/schema/namespace' module Vk module API class Users < Vk::Schema::Namespace # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json class UserLim < Vk::Schema::Object # @return [Integer] User ID attribute :id, API::Types::Coercible::Int.optional # @return [String] URL of square photo of the user with 50 pixels in width attribute :photo, API::Types::Coercible::String.optional # @return [String] User name and last name attribute :name, API::Types::Coercible::String.optional # @return [String] User name in genitive declension attribute :name_gen, API::Types::Coercible::String.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/users/user_lim.rb |