rocl/models/
dashboard_client.rs

1/*
2 * Open Service Broker API
3 *
4 * The Open Service Broker API defines an HTTP(S) interface between Platforms and Service Brokers.
5 *
6 * The version of the OpenAPI document: master - might contain changes that are not yet released
7 * Contact: open-service-broker-api@googlegroups.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct DashboardClient {
16    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
17    pub id: Option<String>,
18    #[serde(rename = "secret", skip_serializing_if = "Option::is_none")]
19    pub secret: Option<String>,
20    #[serde(rename = "redirect_uri", skip_serializing_if = "Option::is_none")]
21    pub redirect_uri: Option<String>,
22}
23
24impl DashboardClient {
25    pub fn new() -> DashboardClient {
26        DashboardClient {
27            id: None,
28            secret: None,
29            redirect_uri: None,
30        }
31    }
32}
33
34