Sha256: fccc0c01b0facffedf3326a03d55a4076cf84529591471d4b22dd4bcce4a2a25

Contents?: true

Size: 538 Bytes

Versions: 1

Compression:

Stored size: 538 Bytes

Contents

# frozen_string_literal: true
require 'vk/api/objects'
require 'vk/schema/namespace'

module Vk
  module API
    class Messages < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class LastActivity < Vk::Schema::Object
        # @return [Integer] Information whether user is online
        attribute :online, API::Types::Coercible::Int
        # @return [Integer] Time when user was online in Unixtime
        attribute :time, API::Types::Coercible::Int
      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/messages/last_activity.rb