SolitaryResult#

pydantic model mobu.models.solitary.SolitaryResult#

Results from executing a solitary monkey.

Parameters:

data (Any)

Show JSON schema
{
   "title": "SolitaryResult",
   "description": "Results from executing a solitary monkey.",
   "type": "object",
   "properties": {
      "success": {
         "title": "Whether the business succeeded",
         "type": "boolean"
      },
      "error": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Error if the business failed"
      },
      "log": {
         "title": "Log of the business execution",
         "type": "string"
      }
   },
   "required": [
      "success",
      "log"
   ]
}

Fields:
field error: str | None = None#
field log: str [Required]#
field success: bool [Required]#