Module: SoqlSettings
- Included in:
- SoqlData
- Defined in:
- lib/leap_salesforce/soql_data/soql_settings.rb
Overview
Settings for configuring usage of Soql Objects
Instance Method Summary collapse
-
#soql_object(name) ⇒ Object
Set name of soql object.
-
#soql_object_name ⇒ String
Name of Soql object.
Instance Method Details
#soql_object(name) ⇒ Object
Set name of soql object. This is equivalent to the name in workbench.developerforce.com or the lightning URL when looking at an object
8 9 10 |
# File 'lib/leap_salesforce/soql_data/soql_settings.rb', line 8 def soql_object(name) @soql_object_name = name end |
#soql_object_name ⇒ String
Returns Name of Soql object.
13 14 15 |
# File 'lib/leap_salesforce/soql_data/soql_settings.rb', line 13 def soql_object_name @soql_object_name || to_s end |