Sha256: 3ed96a4a6ee617cfb0bc2588d4efc0662c8c291d6007419dd6e894fe51d27c3b

Contents?: true

Size: 493 Bytes

Versions: 3

Compression:

Stored size: 493 Bytes

Contents

require_relative '../core/base_service'

module Naver
  module Searchad
    module Api
      module RelatedKeywordStat
        class Service < Naver::Searchad::Api::Core::BaseService

          def initialize
            super('https://api.searchad.naver.com/', '')
          end

          def list_stats(options: nil, &block)
            command = make_command(:get, 'keywordstool', options)
            execute_command(command, &block)
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
naver-searchad-api-1.1.2 lib/naver/searchad/api/related-keyword-stat/service.rb
naver-searchad-api-1.1.1 lib/naver/searchad/api/related-keyword-stat/service.rb
naver-searchad-api-1.1.0 lib/naver/searchad/api/related-keyword-stat/service.rb