// 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 UserConsentOption {
/// The claim name for this consent option.
pub claim: String,
/// The type of consent option.
#[serde(rename = "type")]
pub type_: String,
/// A human-readable label for this consent option.
pub label: String,
/// The available choices for this consent option.
pub choices: Vec<UserConsentOptionChoice>,
}