1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* Hanzo Cloud API
*
* The Hanzo Cloud API as a customer calls it: every operation under /v1/ except the operator's admin product, relay routes, legacy spellings and capabilities still reached by flag. Tagged by product: the first path segment after /v1/.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ActionRecord {
/// Args is the JSON the tool was called with, recorded as TEXT exactly as sent — including whatever the AI drafted into it — so a run can be read back and reproduced. It is a string, not an object.
#[serde(rename = "args", skip_serializing_if = "Option::is_none")]
pub args: Option<String>,
/// CreatedAt is when the run was recorded, as Unix seconds. The ledger is read newest-first on this column.
#[serde(rename = "createdAt", skip_serializing_if = "Option::is_none")]
pub created_at: Option<i32>,
/// Err is why the run failed, when it did. Empty on a successful run.
#[serde(rename = "err", skip_serializing_if = "Option::is_none")]
pub err: Option<String>,
/// ID identifies this one execution. The ledger is append-only, so an id is never reused and never updated.
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
/// OK is whether the tool ran to completion. It is the ledger's own verdict, not the tool's opinion of the outcome — a tool that succeeded at reporting bad news is ok.
#[serde(rename = "ok", skip_serializing_if = "Option::is_none")]
pub ok: Option<bool>,
/// Result is the tool's own answer, likewise recorded as JSON text. Present on a failed run too, where the tool answered but the answer was a refusal.
#[serde(rename = "result", skip_serializing_if = "Option::is_none")]
pub result: Option<String>,
/// StepID is the checklist step the Business AI was acting on.
#[serde(rename = "stepId", skip_serializing_if = "Option::is_none")]
pub step_id: Option<String>,
/// Tool is the MCP tool that was dispatched, by name.
#[serde(rename = "tool", skip_serializing_if = "Option::is_none")]
pub tool: Option<String>,
}
impl ActionRecord {
pub fn new() -> ActionRecord {
ActionRecord {
args: None,
created_at: None,
err: None,
id: None,
ok: None,
result: None,
step_id: None,
tool: None,
}
}
}