ory_client_client/models/
meta.rs

1/*
2 * Ory APIs
3 *
4 * Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. 
5 *
6 * The version of the OpenAPI document: v0.0.1-alpha.1
7 * Contact: support@ory.sh
8 * Generated by: https://openapi-generator.tech
9 */
10
11/// Meta : This might include a label and other information that can optionally be used to render UIs.
12
13
14
15#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
16pub struct Meta {
17    #[serde(rename = "label", skip_serializing_if = "Option::is_none")]
18    pub label: Option<Box<crate::models::UiText>>,
19}
20
21impl Meta {
22    /// This might include a label and other information that can optionally be used to render UIs.
23    pub fn new() -> Meta {
24        Meta {
25            label: None,
26        }
27    }
28}
29
30