Sha256: 205121d62d0daa2884e1f306b59458b55f97c35cc7a5a445b1490beaa834829f

Contents?: true

Size: 745 Bytes

Versions: 1

Compression:

Stored size: 745 Bytes

Contents

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

module Vk
  module API
    class Ads < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class DemoStats < Vk::Schema::Object
        # @return [Integer] Object ID
        attribute :id, API::Types::Coercible::Int.optional
        # @return [API::Ads::ObjectType] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
        attribute :type, API::Ads::ObjectType.optional
        # @return [API::Ads::DemostatsFormat] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
        attribute :stats, Dry::Types[API::Ads::DemostatsFormat].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/ads/demo_stats.rb