// Code generated by oagen. DO NOT EDIT.
#[allow(unused_imports)]
use super::*;
#[allow(unused_imports)]
use crate::enums::*;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct JWTTemplateResponse {
/// The object type.
pub object: String,
/// The JWT template content as a Liquid template string.
pub content: String,
/// The timestamp when the JWT template was created.
pub created_at: String,
/// The timestamp when the JWT template was last updated.
pub updated_at: String,
}