Sha256: 483302dbddf09caa7a0fd3f37e22e8ed161f9dc912a2d7edfcb53cdfeae52b73

Contents?: true

Size: 811 Bytes

Versions: 1

Compression:

Stored size: 811 Bytes

Contents

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

module Vk
  module API
    class Gifts < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class Layout < Vk::Schema::Object
        # @return [Integer] Gift ID
        attribute :id, API::Types::Coercible::Int.optional
        # @return [String] URL of the preview image with 256 px in width
        attribute :thumb_256, API::Types::Coercible::String.optional
        # @return [String] URL of the preview image with 96 px in width
        attribute :thumb_96, API::Types::Coercible::String.optional
        # @return [String] URL of the preview image with 48 px in width
        attribute :thumb_48, 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/gifts/layout.rb