// 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 RedirectUri {
/// The object type.
pub object: String,
/// The ID of the redirect URI.
pub id: String,
/// The redirect URI.
pub uri: String,
/// Whether this is the default redirect URI.
pub default: bool,
/// The timestamp when the redirect URI was created.
pub created_at: String,
/// The timestamp when the redirect URI was last updated.
pub updated_at: String,
}