Skip to main content

spatio_sdk/models/
agent_task_usage.rs

1/*
2 * SpatioAPI
3 *
4 * The REST API that owns every resource in your Spatio workspace: notes, sheets, slides, tasks, calendar events, mail, chat, files, and contacts. SpatioMCP wraps this API; Spatio Desktop reads from it. You can call it directly from your own code.  All requests must be authenticated with a Personal Access Token (`Authorization: Bearer pat_...`) or an OAuth 2.1 access token, and use HTTPS.  Official SDKs (MIT, generated from this spec on every release):  - TypeScript: https://github.com/spatio-labs/spatio-ts (`npm install @spatio-labs/spatio-ts`) - Python: https://github.com/spatio-labs/spatio-py (`pip install spatio-sdk`) - Go: https://github.com/spatio-labs/spatio-go (`go get github.com/spatio-labs/spatio-go`)  This specification is generated from the platform-service Go source on every push to `main`. The spec, not hand-written documentation, is the source of truth: server stubs and SDKs are generated from it, and any drift between the spec and the running service fails CI. 
5 *
6 * The version of the OpenAPI document: v1
7 * Contact: hello@spatio.app
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// AgentTaskUsage : Free-trial agent-task gate. `allowed` is the only field clients must check before issuing a turn. Paid users get `paid: true, allowed: true` with the count fields null. 
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct AgentTaskUsage {
17    #[serde(rename = "allowed")]
18    pub allowed: bool,
19    #[serde(rename = "task_count", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
20    pub task_count: Option<Option<i32>>,
21    #[serde(rename = "daily_limit", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
22    pub daily_limit: Option<Option<i32>>,
23    #[serde(rename = "trial_ends_at", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
24    pub trial_ends_at: Option<Option<chrono::DateTime<chrono::FixedOffset>>>,
25    #[serde(rename = "paid", skip_serializing_if = "Option::is_none")]
26    pub paid: Option<bool>,
27}
28
29impl AgentTaskUsage {
30    /// Free-trial agent-task gate. `allowed` is the only field clients must check before issuing a turn. Paid users get `paid: true, allowed: true` with the count fields null. 
31    pub fn new(allowed: bool) -> AgentTaskUsage {
32        AgentTaskUsage {
33            allowed,
34            task_count: None,
35            daily_limit: None,
36            trial_ends_at: None,
37            paid: None,
38        }
39    }
40}
41