akeyless_api/models/
list_groups_output.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct ListGroupsOutput {
16 #[serde(rename = "groups", skip_serializing_if = "Option::is_none")]
17 pub groups: Option<Vec<models::Group>>,
18 #[serde(rename = "next_page", skip_serializing_if = "Option::is_none")]
19 pub next_page: Option<String>,
20}
21
22impl ListGroupsOutput {
23 pub fn new() -> ListGroupsOutput {
24 ListGroupsOutput {
25 groups: None,
26 next_page: None,
27 }
28 }
29}
30