11
12
13
14
15
16
17
|
# File 'lib/castle/api/lists/get.rb', line 11
def call(options = {})
options = Castle::Utils::DeepSymbolizeKeys.call(options || {})
http = options.delete(:http)
config = options.delete(:config) || Castle.config
Castle::API.call(Castle::Commands::Lists::Get.build(options), {}, http, config)
end
|