Class: Insika::ToolUsageReport::Row
- Inherits:
-
Data
- Object
- Data
- Insika::ToolUsageReport::Row
- Defined in:
- lib/insika/tool_usage_report.rb
Overview
One finding. kind: "never_called" | "error_rate" | "stale".
Instance Attribute Summary collapse
-
#agent ⇒ Object
readonly
Returns the value of attribute agent.
-
#detail ⇒ Object
readonly
Returns the value of attribute detail.
-
#kind ⇒ Object
readonly
Returns the value of attribute kind.
-
#tool ⇒ Object
readonly
Returns the value of attribute tool.
Instance Method Summary collapse
Instance Attribute Details
#agent ⇒ Object (readonly)
Returns the value of attribute agent
32 33 34 |
# File 'lib/insika/tool_usage_report.rb', line 32 def agent @agent end |
#detail ⇒ Object (readonly)
Returns the value of attribute detail
32 33 34 |
# File 'lib/insika/tool_usage_report.rb', line 32 def detail @detail end |
#kind ⇒ Object (readonly)
Returns the value of attribute kind
32 33 34 |
# File 'lib/insika/tool_usage_report.rb', line 32 def kind @kind end |
#tool ⇒ Object (readonly)
Returns the value of attribute tool
32 33 34 |
# File 'lib/insika/tool_usage_report.rb', line 32 def tool @tool end |
Instance Method Details
#to_h ⇒ Object
33 |
# File 'lib/insika/tool_usage_report.rb', line 33 def to_h = { "agent" => agent, "tool" => tool, "kind" => kind, "detail" => detail } |