Sha256: 2d551b4d59aa8f4b9df40912025f7c03a28d2bb0d9d4ca690ff2b28d4a8a752b

Contents?: true

Size: 645 Bytes

Versions: 1

Compression:

Stored size: 645 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 Occupation < Vk::Schema::Object
        # @return [String] Type of occupation
        attribute :type, API::Types::Coercible::String.optional
        # @return [Integer] ID of school, university, company group
        attribute :id, API::Types::Coercible::Int.optional
        # @return [String] Name of occupation
        attribute :name, 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/occupation.rb