Class: Kameleoon::Types::DataFile
- Inherits:
-
Object
- Object
- Kameleoon::Types::DataFile
- Defined in:
- lib/kameleoon/types/data_file.rb
Overview
DataFile
Instance Attribute Summary collapse
-
#feature_flags ⇒ Object
readonly
Returns the value of attribute feature_flags.
Instance Method Summary collapse
-
#initialize(feature_flags) ⇒ DataFile
constructor
private
A new instance of DataFile.
- #to_s ⇒ Object
Constructor Details
#initialize(feature_flags) ⇒ DataFile
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of DataFile.
10 11 12 |
# File 'lib/kameleoon/types/data_file.rb', line 10 def initialize(feature_flags) @feature_flags = feature_flags end |
Instance Attribute Details
#feature_flags ⇒ Object (readonly)
Returns the value of attribute feature_flags.
7 8 9 |
# File 'lib/kameleoon/types/data_file.rb', line 7 def feature_flags @feature_flags end |
Instance Method Details
#to_s ⇒ Object
14 15 16 |
# File 'lib/kameleoon/types/data_file.rb', line 14 def to_s "DataFile{feature_flags:#{@feature_flags}}" end |