1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct ProviderOrganizationCreateRequestModel {
#[serde(rename = "clientOwnerEmail")]
pub client_owner_email: String,
#[serde(rename = "organizationCreateRequest")]
pub organization_create_request: Box<crate::models::OrganizationCreateRequestModel>,
}
impl ProviderOrganizationCreateRequestModel {
pub fn new(
client_owner_email: String,
organization_create_request: crate::models::OrganizationCreateRequestModel,
) -> ProviderOrganizationCreateRequestModel {
ProviderOrganizationCreateRequestModel {
client_owner_email,
organization_create_request: Box::new(organization_create_request),
}
}
}