memas_sdk/models/
create_user_request.rs

1/*
2 * MeMaS CP APIs
3 *
4 * This is the Control Plane APIs for MeMaS (Memory Management Service).
5 *
6 * The version of the OpenAPI document: 0.1.0
7 * Contact: max.yu@memas.ai
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct CreateUserRequest {
16    /// \"Full namespace name, where child namespaces are appended after their parents' names with '.'\"
17    #[serde(rename = "namespace_pathname", skip_serializing_if = "Option::is_none")]
18    pub namespace_pathname: Option<String>,
19}
20
21impl CreateUserRequest {
22    pub fn new() -> CreateUserRequest {
23        CreateUserRequest {
24            namespace_pathname: None,
25        }
26    }
27}
28
29