Class: Hackle::ContainerGroup
- Inherits:
-
Object
- Object
- Hackle::ContainerGroup
- Defined in:
- lib/hackle/internal/model/container.rb
Instance Attribute Summary collapse
-
#experiments ⇒ Object
readonly
Returns the value of attribute experiments.
- #id ⇒ Integer readonly
Instance Method Summary collapse
-
#initialize(id:, experiments:) ⇒ ContainerGroup
constructor
A new instance of ContainerGroup.
Constructor Details
#initialize(id:, experiments:) ⇒ ContainerGroup
Returns a new instance of ContainerGroup.
42 43 44 45 |
# File 'lib/hackle/internal/model/container.rb', line 42 def initialize(id:, experiments:) @id = id @experiments = experiments end |
Instance Attribute Details
#experiments ⇒ Object (readonly)
Returns the value of attribute experiments.
38 |
# File 'lib/hackle/internal/model/container.rb', line 38 attr_reader :id, :experiments |
#id ⇒ Integer (readonly)
38 39 40 |
# File 'lib/hackle/internal/model/container.rb', line 38 def id @id end |