Sha256: 3b4905f3f121a31ee2bb92aac6ebba53883850e1a405fd32db104e4e80345ac4
Contents?: true
Size: 799 Bytes
Versions: 1
Compression:
Stored size: 799 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 Checked < Vk::Schema::Object # @return [String] Information whether user can start the lead attribute :result, API::Types::Coercible::String.optional # @return [String] Reason why user can't start the lead attribute :reason, API::Types::Coercible::String.optional # @return [String] URL user should open to start the lead attribute :start_link, API::Types::Coercible::String.optional # @return [String] Session ID attribute :sid, 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/leads/checked.rb |