Sha256: d957c4a6b7c4a93acf3160f67b499a12197f90f13d82d4ebb5889a5aac26606f

Contents?: true

Size: 704 Bytes

Versions: 1

Compression:

Stored size: 704 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 Client < Vk::Schema::Object
        # @return [Integer] Client ID
        attribute :id, API::Types::Coercible::Int
        # @return [String] Client name
        attribute :name, API::Types::Coercible::String
        # @return [String] Client's day limit, rubles
        attribute :day_limit, API::Types::Coercible::String
        # @return [String] Client's total limit, rubles
        attribute :all_limit, API::Types::Coercible::String
      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/client.rb