class DataComApi::QueryParameters
Constants
- UNALLOWED_FIELDS
Public Class Methods
stringify_hash_values(hash)
click to toggle source
Destructively convert all values using into strings
# File lib/data-com-api/query_parameters.rb, line 54 def self.stringify_hash_values(hash) hash.each_pair do |key, value| hash[key] = value.to_s end hash end
Public Instance Methods
to_hash()
click to toggle source
Calls superclass method
# File lib/data-com-api/query_parameters.rb, line 61 def to_hash self.class.stringify_hash_values(super) end