Sha256: 307fae04f3e126642740acc87db3da12aede8c37cefb39031c95286797ac17c1

Contents?: true

Size: 750 Bytes

Versions: 1

Compression:

Stored size: 750 Bytes

Contents

# frozen_string_literal: true
require 'vk/api/methods'

module Vk
  module API
    class Leads < Vk::Schema::Namespace
      module Methods
        # Counts the metric event.
        class MetricHit < Schema::Method
          # @!group Properties

          self.open = true
          self.method = 'leads.metricHit'

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [String] :data Metric data obtained in the lead interface.
          #   @return [Leads::Methods::MetricHit]

          # @!group Arguments

          # @return [String] Metric data obtained in the lead interface.
          attribute :data, API::Types::Coercible::String.optional
        end
      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/methods/metric_hit.rb