mirror of
https://github.com/Tribufu/TribufuRust
synced 2026-08-09 04:41:07 +00:00
60 lines
2.6 KiB
Rust
60 lines
2.6 KiB
Rust
/*
|
|
* Tribufu API
|
|
*
|
|
* API to access Tribufu services.
|
|
*
|
|
* The version of the OpenAPI document: 1.4.3
|
|
* Contact: contact@tribufu.com
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
use crate::models;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct IntrospectResponse {
|
|
#[serde(rename = "jti", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub jti: Option<Option<String>>,
|
|
#[serde(rename = "active", skip_serializing_if = "Option::is_none")]
|
|
pub active: Option<bool>,
|
|
#[serde(rename = "token_type", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub token_type: Option<Option<String>>,
|
|
#[serde(rename = "client_id", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub client_id: Option<Option<String>>,
|
|
#[serde(rename = "sub", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub sub: Option<Option<String>>,
|
|
#[serde(rename = "username", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub username: Option<Option<String>>,
|
|
#[serde(rename = "scope", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub scope: Option<Option<String>>,
|
|
#[serde(rename = "iss", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub iss: Option<Option<String>>,
|
|
#[serde(rename = "aud", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub aud: Option<Option<String>>,
|
|
#[serde(rename = "iat", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub iat: Option<Option<i64>>,
|
|
#[serde(rename = "exp", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub exp: Option<Option<i64>>,
|
|
#[serde(rename = "nbf", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
|
|
pub nbf: Option<Option<i64>>,
|
|
}
|
|
|
|
impl IntrospectResponse {
|
|
pub fn new() -> IntrospectResponse {
|
|
IntrospectResponse {
|
|
jti: None,
|
|
active: None,
|
|
token_type: None,
|
|
client_id: None,
|
|
sub: None,
|
|
username: None,
|
|
scope: None,
|
|
iss: None,
|
|
aud: None,
|
|
iat: None,
|
|
exp: None,
|
|
nbf: None,
|
|
}
|
|
}
|
|
}
|
|
|