Sha256: 7c478e47d15a1fa03ecf180da006edfdc3ef58a250559a972cd896f53e661244
Contents?: true
Size: 918 Bytes
Versions: 1
Compression:
Stored size: 918 Bytes
Contents
# frozen_string_literal: true require 'vk/api/objects' require 'vk/schema/namespace' module Vk module API class Leads < Vk::Schema::Namespace # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json class Complete < Vk::Schema::Object # @return [Integer] Offer limit attribute :limit, API::Types::Coercible::Int.optional # @return [Integer] Amount of spent votes attribute :spent, API::Types::Coercible::Int.optional # @return [Integer] Offer cost attribute :cost, API::Types::Coercible::Int.optional # @return [API::Base::BoolInt] Information whether test mode is enabled attribute :test_mode, API::Base::BoolInt.optional # @return [API::Base::OkResponse] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json attribute :success, API::Base::OkResponse.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/leads/complete.rb |