Class: Puppeteer::WebMCPToolCallResult
- Inherits:
-
Object
- Object
- Puppeteer::WebMCPToolCallResult
- Defined in:
- lib/puppeteer/web_mcp.rb,
sig/puppeteer/web_mcp.rbs
Instance Attribute Summary collapse
-
#call ⇒ Object
readonly
Returns the value of attribute call.
-
#error_text ⇒ Object
readonly
Returns the value of attribute error_text.
-
#exception ⇒ Object
readonly
Returns the value of attribute exception.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#output ⇒ Object
readonly
Returns the value of attribute output.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
Constructor Details
#initialize(id:, call:, status:, output:, error_text:, exception:) ⇒ Object
81 82 83 84 85 86 87 88 |
# File 'lib/puppeteer/web_mcp.rb', line 81 def initialize(id:, call:, status:, output:, error_text:, exception:) @id = id @call = call @status = status @output = output @error_text = error_text @exception = exception end |
Instance Attribute Details
#call ⇒ Object (readonly)
Returns the value of attribute call.
90 91 92 |
# File 'lib/puppeteer/web_mcp.rb', line 90 def call @call end |
#error_text ⇒ Object (readonly)
Returns the value of attribute error_text.
90 91 92 |
# File 'lib/puppeteer/web_mcp.rb', line 90 def error_text @error_text end |
#exception ⇒ Object (readonly)
Returns the value of attribute exception.
90 91 92 |
# File 'lib/puppeteer/web_mcp.rb', line 90 def exception @exception end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
90 91 92 |
# File 'lib/puppeteer/web_mcp.rb', line 90 def id @id end |
#output ⇒ Object (readonly)
Returns the value of attribute output.
90 91 92 |
# File 'lib/puppeteer/web_mcp.rb', line 90 def output @output end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
90 91 92 |
# File 'lib/puppeteer/web_mcp.rb', line 90 def status @status end |