Class: Cadenya::Types::ParameterAction_Remove
- Inherits:
-
Object
- Object
- Cadenya::Types::ParameterAction_Remove
- Defined in:
- lib/cadenya/types.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(path: nil) ⇒ ParameterAction_Remove
constructor
A new instance of ParameterAction_Remove.
- #to_h ⇒ Object
Constructor Details
#initialize(path: nil) ⇒ ParameterAction_Remove
Returns a new instance of ParameterAction_Remove.
4542 4543 4544 |
# File 'lib/cadenya/types.rb', line 4542 def initialize(path: nil) @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
4540 4541 4542 |
# File 'lib/cadenya/types.rb', line 4540 def path @path end |
Class Method Details
.from_json(data) ⇒ Object
4546 4547 4548 4549 4550 |
# File 'lib/cadenya/types.rb', line 4546 def self.from_json(data) new( path: data["path"], ) end |