Sha256: e244ead46a5931b322997f9f135e6881244a475eeb2f2e0c4aa6fd03bd0ffa2a
Contents?: true
Size: 635 Bytes
Versions: 1
Compression:
Stored size: 635 Bytes
Contents
# frozen_string_literal: true require 'vk/api/objects' require 'vk/schema/namespace' module Vk module API class Notifications < Vk::Schema::Namespace # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json class Reply < Vk::Schema::Object # @return [Integer] Reply ID attribute :id, API::Types::Coercible::Int.optional # @return [Integer] Date when the reply has been created in Unixtime attribute :date, API::Types::Coercible::Int.optional # @return [Integer] Reply text attribute :text, 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/notifications/reply.rb |