Class: Cadenya::Types::ToolOverlay_WidgetArgumentExposure
- Inherits:
-
Object
- Object
- Cadenya::Types::ToolOverlay_WidgetArgumentExposure
- Defined in:
- lib/cadenya/types.rb
Instance Attribute Summary collapse
-
#enabled ⇒ Object
readonly
Returns the value of attribute enabled.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(enabled: nil) ⇒ ToolOverlay_WidgetArgumentExposure
constructor
A new instance of ToolOverlay_WidgetArgumentExposure.
- #to_h ⇒ Object
Constructor Details
#initialize(enabled: nil) ⇒ ToolOverlay_WidgetArgumentExposure
Returns a new instance of ToolOverlay_WidgetArgumentExposure.
5890 5891 5892 |
# File 'lib/cadenya/types.rb', line 5890 def initialize(enabled: nil) @enabled = enabled end |
Instance Attribute Details
#enabled ⇒ Object (readonly)
Returns the value of attribute enabled.
5888 5889 5890 |
# File 'lib/cadenya/types.rb', line 5888 def enabled @enabled end |
Class Method Details
.from_json(data) ⇒ Object
5894 5895 5896 5897 5898 |
# File 'lib/cadenya/types.rb', line 5894 def self.from_json(data) new( enabled: data["enabled"], ) end |