/*
* Orvanta API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.7.0
* Contact: contact@orvanta.cloud
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct RefreshMcpOAuth200Response {
#[serde(rename = "expires_in", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub expires_in: Option<Option<i32>>,
}
impl RefreshMcpOAuth200Response {
pub fn new() -> RefreshMcpOAuth200Response {
RefreshMcpOAuth200Response {
expires_in: None,
}
}
}