Sha256: 8f813b8a73ff6ea26be46cdf7ecd2e76358faa4f71ce9a2827dddd7a11cb87cf
Contents?: true
Size: 798 Bytes
Versions: 1
Compression:
Stored size: 798 Bytes
Contents
# frozen_string_literal: true require 'vk/api/objects' require 'vk/schema/namespace' module Vk module API class Account < Vk::Schema::Namespace # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json class UserXtrContacts < API::Users::UserFull # @return [String] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json attribute :contact, API::Types::Coercible::String.optional # @return [Integer] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json attribute :request_sent, API::Types::Coercible::Int.optional # @return [Integer] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json attribute :sort_num, API::Types::Coercible::Int.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/account/user_xtr_contacts.rb |