Sha256: 739d3b9ce3194e14a8c81dd30dcde3cbb796532a4ddf1cb06e507855c5e4b487

Contents?: true

Size: 854 Bytes

Versions: 1

Compression:

Stored size: 854 Bytes

Contents

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

module Vk
  module API
    class Secure < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class SmsNotification < Vk::Schema::Object
        # @return [Integer] Notification ID
        attribute :id, API::Types::Coercible::Int.optional
        # @return [Integer] Application ID
        attribute :app_id, API::Types::Coercible::Int.optional
        # @return [Integer] User ID
        attribute :user_id, API::Types::Coercible::Int.optional
        # @return [Integer] Date when message has been sent in Unixtime
        attribute :date, API::Types::Coercible::Int.optional
        # @return [String] Messsage text
        attribute :message, 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/secure/sms_notification.rb