spatio_sdk/models/token_response.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#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct TokenResponse {
16 /// Opaque bearer token. Format `tok_<32 random base64url>`.
17 #[serde(rename = "access_token")]
18 pub access_token: String,
19 #[serde(rename = "token_type")]
20 pub token_type: String,
21 /// Seconds until access_token expires.
22 #[serde(rename = "expires_in")]
23 pub expires_in: i32,
24 #[serde(rename = "refresh_token", skip_serializing_if = "Option::is_none")]
25 pub refresh_token: Option<String>,
26 #[serde(rename = "scope", skip_serializing_if = "Option::is_none")]
27 pub scope: Option<String>,
28 /// Only present when `openid` scope was granted. RS256-signed JWT — verify against the JWKS.
29 #[serde(rename = "id_token", skip_serializing_if = "Option::is_none")]
30 pub id_token: Option<String>,
31}
32
33impl TokenResponse {
34 pub fn new(access_token: String, token_type: String, expires_in: i32) -> TokenResponse {
35 TokenResponse {
36 access_token,
37 token_type,
38 expires_in,
39 refresh_token: None,
40 scope: None,
41 id_token: None,
42 }
43 }
44}
45