Method: PureCloud::ApiClient#build_collection_param
- Defined in:
- lib/purecloud/api_client.rb
#build_collection_param(param, collection_format) ⇒ Object
Build parameter value according to the given collection format.
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
# File 'lib/purecloud/api_client.rb', line 320 def build_collection_param(param, collection_format) case collection_format when :csv param.join(',') when :ssv param.join(' ') when :tsv param.join("\t") when :pipes param.join('|') when :multi # return the array directly as typhoeus will handle it as expected param else fail "unknown collection format: #{collection_format.inspect}" end end |