openfga_sdk/models/
list_objects_response.rs

1/**
2 * rust SDK for OpenFGA
3 *
4 * API version: 0.1
5 * Website: https://openfga.dev
6 * Documentation: https://openfga.dev/docs
7 * Support: https://discord.gg/8naAwJfWN6
8 * License: [Apache-2.0](https://github.com/openfga/rust-sdk/blob/main/LICENSE)
9 *
10 * NOTE: This file was auto generated by OpenAPI Generator (https://openapi-generator.tech). DO NOT EDIT.
11 */
12
13#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
14pub struct ListObjectsResponse {
15    #[serde(rename = "object_ids", skip_serializing_if = "Option::is_none")]
16    pub object_ids: Option<Vec<String>>,
17}
18
19impl ListObjectsResponse {
20    pub fn new() -> ListObjectsResponse {
21        ListObjectsResponse { object_ids: None }
22    }
23}