clientapi_pbs/models/
admin_datastore_delete_groups_response.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct AdminDatastoreDeleteGroupsResponse {
16
17 #[serde(rename = "data")]
18 pub data: Box<models::AdminDatastoreDeleteGroupsResponseData>,
19
20 #[serde(rename = "total", skip_serializing_if = "Option::is_none")]
22 pub total: Option<i32>,
23
24 #[serde(rename = "changes", skip_serializing_if = "Option::is_none")]
26 pub changes: Option<serde_json::Value>,
27
28
29}
30
31impl AdminDatastoreDeleteGroupsResponse {
32 pub fn new(data: models::AdminDatastoreDeleteGroupsResponseData) -> AdminDatastoreDeleteGroupsResponse {
33 AdminDatastoreDeleteGroupsResponse {
34
35 data: Box::new(data),
36
37 total: None,
38
39 changes: None,
40
41 }
42 }
43}
44
45