Set the timestamp (Unix epoch seconds). Defaults to now.
(mut self, ts: i64)
| 160 | |
| 161 | /// Set the timestamp (Unix epoch seconds). Defaults to now. |
| 162 | pub fn timestamp(mut self, ts: i64) -> Self { |
| 163 | self.timestamp = Some(ts); |
| 164 | self |
| 165 | } |
| 166 | |
| 167 | /// Set the vault work-item/intent governing this turn. |
| 168 | pub fn plan_id(mut self, plan_id: impl Into<String>) -> Self { |
no outgoing calls