Sha256: 3704d08b937482845b79b4d53deadaa2ff699f92c0bf86eb44dbd8c815773b26
Contents?: true
Size: 460 Bytes
Versions: 11
Compression:
Stored size: 460 Bytes
Contents
# frozen_string_literal: true # Settings for configuring usage of Soql Objects module SoqlSettings # Set name of soql object. This is equivalent to the name in https://workbench.developerforce.com or # the lightning URL when looking at an object # @param [String] name Name of Soql object def soql_object(name) @soql_object_name = name end # @return [String] Name of Soql object def soql_object_name @soql_object_name || to_s end end
Version data entries
11 entries across 11 versions & 1 rubygems