/*
* 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 CreateConcreteRoleForContextRequest {
#[serde(rename = "roleId")]
pub role_id: dtz_identifier::RoleId,
}
impl CreateConcreteRoleForContextRequest {
pub fn new(role_id: dtz_identifier::RoleId) -> CreateConcreteRoleForContextRequest {
CreateConcreteRoleForContextRequest {
role_id,
}
}
}