Class: Cadenya::Types::AgentInfo
- Inherits:
-
Object
- Object
- Cadenya::Types::AgentInfo
- Defined in:
- lib/cadenya/types.rb
Instance Attribute Summary collapse
-
#created_by ⇒ Object
readonly
Returns the value of attribute created_by.
-
#variation_count ⇒ Object
readonly
Returns the value of attribute variation_count.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(variation_count: nil, created_by: nil) ⇒ AgentInfo
constructor
A new instance of AgentInfo.
- #to_h ⇒ Object
Constructor Details
#initialize(variation_count: nil, created_by: nil) ⇒ AgentInfo
Returns a new instance of AgentInfo.
417 418 419 420 |
# File 'lib/cadenya/types.rb', line 417 def initialize(variation_count: nil, created_by: nil) @variation_count = variation_count @created_by = created_by end |
Instance Attribute Details
#created_by ⇒ Object (readonly)
Returns the value of attribute created_by.
415 416 417 |
# File 'lib/cadenya/types.rb', line 415 def created_by @created_by end |
#variation_count ⇒ Object (readonly)
Returns the value of attribute variation_count.
415 416 417 |
# File 'lib/cadenya/types.rb', line 415 def variation_count @variation_count end |