Sha256: 6e8e2867c242b09e169f6e0e4dc087e4dafee8e916f4f980edc41160fdff0ecf

Contents?: true

Size: 479 Bytes

Versions: 3

Compression:

Stored size: 479 Bytes

Contents

require_relative '../core/base_service'

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

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

          def list_labels(options: nil, &block)
            command = make_command(:get, 'labels', 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/label/service.rb
naver-searchad-api-1.1.1 lib/naver/searchad/api/label/service.rb
naver-searchad-api-1.1.0 lib/naver/searchad/api/label/service.rb