Sha256: 60311ee816b6844f6b0e262d5db771c6ccd5fb02770fe31d5bf2536b99629825

Contents?: true

Size: 909 Bytes

Versions: 1

Compression:

Stored size: 909 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 Career < Vk::Schema::Object
        # @return [Integer] Community ID
        attribute :group_id, API::Types::Coercible::Int.optional
        # @return [Integer] Country ID
        attribute :country_id, API::Types::Coercible::Int.optional
        # @return [Integer] City ID
        attribute :city_id, API::Types::Coercible::Int.optional
        # @return [Integer] From year
        attribute :from, API::Types::Coercible::Int.optional
        # @return [Integer] Till year
        attribute :until, API::Types::Coercible::Int.optional
        # @return [String] Position
        attribute :position, 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/career.rb