wacht 0.1.0-beta.5

Official Rust SDK for the Wacht platform, providing type-safe API client and authentication middleware
Documentation
/*
 * Wacht Backend API
 *
 * Backend API for the Wacht platform console
 *
 * The version of the OpenAPI document: 1.0.0
 *
 * Generated by: https://openapi-generator.tech
 */

use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct AddEmailRequest {
    #[serde(rename = "email")]
    pub email: String,
    #[serde(
        rename = "verification_strategy",
        skip_serializing_if = "Option::is_none"
    )]
    pub verification_strategy: Option<String>,
}