Sha256: 3c68e0ba7815e570929062c8b4c4adfc38c018e109365f0aba6e9342ed418207

Contents?: true

Size: 830 Bytes

Versions: 1

Compression:

Stored size: 830 Bytes

Contents

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

module Vk
  module API
    class Friends < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class RequestsXtrMessage < Vk::Schema::Object
        # @return [Integer] User ID
        attribute :user_id, API::Types::Coercible::Int.optional
        # @return [String] ID of the user by whom friend has been suggested
        attribute :from, API::Types::Coercible::String.optional
        # @return [Object] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
        attribute :mutual, API::Types::Coercible::Hash.optional
        # @return [String] Message sent with a request
        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/friends/requests_xtr_message.rb