Sha256: cfaa9c30d30cb627563179634d06061a14f1ec1548494f5419626a4f97db10cd
Contents?: true
Size: 484 Bytes
Versions: 4
Compression:
Stored size: 484 Bytes
Contents
require_relative '../core/base_service' module Naver module Searchad module Api module BusinessChannel class Service < Naver::Searchad::Api::Core::BaseService def initialize super('https://api.naver.com/', 'ncc/') end def list_channels(options: nil, &block) command = make_command(:get, 'channels', options) execute_command(command, &block) end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems