Class: ModelContextProtocol::Annotations
- Inherits:
-
Object
- Object
- ModelContextProtocol::Annotations
- Defined in:
- lib/model_context_protocol.rb
Instance Attribute Summary collapse
-
#audience ⇒ Object
readonly
Returns the value of attribute audience.
-
#priority ⇒ Object
readonly
Returns the value of attribute priority.
Instance Method Summary collapse
-
#initialize(audience: nil, priority: nil) ⇒ Annotations
constructor
A new instance of Annotations.
Constructor Details
#initialize(audience: nil, priority: nil) ⇒ Annotations
Returns a new instance of Annotations.
37 38 39 40 |
# File 'lib/model_context_protocol.rb', line 37 def initialize(audience: nil, priority: nil) @audience = audience @priority = priority end |
Instance Attribute Details
#audience ⇒ Object (readonly)
Returns the value of attribute audience.
35 36 37 |
# File 'lib/model_context_protocol.rb', line 35 def audience @audience end |
#priority ⇒ Object (readonly)
Returns the value of attribute priority.
35 36 37 |
# File 'lib/model_context_protocol.rb', line 35 def priority @priority end |