Sha256: 9bedca4c0b59920bae841f6f04e88d36f2ba1b50a83f6814cb9c6c6f7dfb9ffa

Contents?: true

Size: 584 Bytes

Versions: 1

Compression:

Stored size: 584 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 Rules < Vk::Schema::Object
        # @return [String] Comment
        attribute :title, API::Types::Coercible::String.optional
        # @return [Array] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
        attribute :paragraphs, API::Types::Coercible::Array.member(API::Ads::Paragraphs).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/rules.rb