Class: Statsig::CheckGateOptions
- Inherits:
-
Object
- Object
- Statsig::CheckGateOptions
- Defined in:
- lib/statsig.rb
Instance Attribute Summary collapse
-
#disable_evaluation_details ⇒ Object
Returns the value of attribute disable_evaluation_details.
-
#disable_log_exposure ⇒ Object
Returns the value of attribute disable_log_exposure.
-
#ignore_local_overrides ⇒ Object
Returns the value of attribute ignore_local_overrides.
Instance Method Summary collapse
-
#initialize(disable_log_exposure: false, disable_evaluation_details: false, ignore_local_overrides: false) ⇒ CheckGateOptions
constructor
A new instance of CheckGateOptions.
Constructor Details
#initialize(disable_log_exposure: false, disable_evaluation_details: false, ignore_local_overrides: false) ⇒ CheckGateOptions
Returns a new instance of CheckGateOptions.
55 56 57 58 59 |
# File 'lib/statsig.rb', line 55 def initialize(disable_log_exposure: false, disable_evaluation_details: false, ignore_local_overrides: false) @disable_log_exposure = disable_log_exposure @disable_evaluation_details = disable_evaluation_details @ignore_local_overrides = ignore_local_overrides end |
Instance Attribute Details
#disable_evaluation_details ⇒ Object
Returns the value of attribute disable_evaluation_details.
53 54 55 |
# File 'lib/statsig.rb', line 53 def disable_evaluation_details @disable_evaluation_details end |
#disable_log_exposure ⇒ Object
Returns the value of attribute disable_log_exposure.
53 54 55 |
# File 'lib/statsig.rb', line 53 def disable_log_exposure @disable_log_exposure end |
#ignore_local_overrides ⇒ Object
Returns the value of attribute ignore_local_overrides.
53 54 55 |
# File 'lib/statsig.rb', line 53 def ignore_local_overrides @ignore_local_overrides end |