dtz-identity 2.1.6

a generated client for the DTZ Identity API
Documentation
/*
 * 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 ListIdentity200Response {
    #[serde(rename = "currentIdentity", skip_serializing_if = "Option::is_none")]
    pub current_identity: Option<String>,
    #[serde(rename = "identities", skip_serializing_if = "Option::is_none")]
    pub identities: Option<Vec<models::ListIdentity200ResponseIdentitiesInner>>,
}

impl ListIdentity200Response {
    pub fn new() -> ListIdentity200Response {
        ListIdentity200Response {
            current_identity: None,
            identities: None,
        }
    }
}