Sha256: fbe7120a3ef7df501095b7460091170cce30a412677108ad1ff301ab8e3a0374

Contents?: true

Size: 787 Bytes

Versions: 1

Compression:

Stored size: 787 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 Account < Vk::Schema::Object
        # @return [Integer] Account ID
        attribute :account_id, API::Types::Coercible::Int
        # @return [String] Account type
        attribute :account_type, API::Types::Coercible::String
        # @return [API::Base::BoolInt] Information whether account is active
        attribute :account_status, API::Base::BoolInt
        # @return [API::Ads::AccessRole] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
        attribute :access_role, API::Ads::AccessRole
      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/account.rb