Class: Cadenya::Types::ToolOverlay_ParameterPath
- Inherits:
-
Object
- Object
- Cadenya::Types::ToolOverlay_ParameterPath
- 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) ⇒ ToolOverlay_ParameterPath
constructor
A new instance of ToolOverlay_ParameterPath.
- #to_h ⇒ Object
Constructor Details
#initialize(path: nil) ⇒ ToolOverlay_ParameterPath
Returns a new instance of ToolOverlay_ParameterPath.
5835 5836 5837 |
# File 'lib/cadenya/types.rb', line 5835 def initialize(path: nil) @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
5833 5834 5835 |
# File 'lib/cadenya/types.rb', line 5833 def path @path end |
Class Method Details
.from_json(data) ⇒ Object
5839 5840 5841 5842 5843 |
# File 'lib/cadenya/types.rb', line 5839 def self.from_json(data) new( path: data["path"], ) end |