class DoceboRuby::Parameters

Public Class Methods

new(hash) click to toggle source
# File lib/docebo_ruby/parameters.rb, line 3
def initialize(hash)
  @hash = hash.to_h
end

Public Instance Methods

to_s() click to toggle source
# File lib/docebo_ruby/parameters.rb, line 7
def to_s
  @hash.values.join(',')
end