class Attio::Util::Configuration

def to_h

Returns:
  • (Hash) - Configuration settings as a hash
def to_h
  ALL_SETTINGS.each_with_object({}) do |setting, hash|
    hash[setting] = instance_variable_get("@#{setting}")
  end
end