/*
* DTZ Identity
*
* a generated client for the DTZ Identity API
*
* Contact: jens@apimeister.com
* Generated by: https://openapi-generator.tech
*/
#[allow(unused_imports)]
use crate::models;
#[allow(unused_imports)]
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SignupRequest {
#[serde(rename = "email")]
pub email: String,
#[serde(rename = "password")]
pub password: String,
}
impl SignupRequest {
pub fn new(email: String, password: String) -> SignupRequest {
SignupRequest {
email,
password,
}
}
}