bitwarden_api_api/models/
global_domains.rs

1/*
2 * Bitwarden Internal API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: latest
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use serde::{Deserialize, Serialize};
12
13use crate::models;
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct GlobalDomains {
17    #[serde(
18        rename = "type",
19        alias = "R#type",
20        skip_serializing_if = "Option::is_none"
21    )]
22    pub r#type: Option<i32>,
23    #[serde(
24        rename = "domains",
25        alias = "Domains",
26        skip_serializing_if = "Option::is_none"
27    )]
28    pub domains: Option<Vec<String>>,
29    #[serde(
30        rename = "excluded",
31        alias = "Excluded",
32        skip_serializing_if = "Option::is_none"
33    )]
34    pub excluded: Option<bool>,
35}
36
37impl GlobalDomains {
38    pub fn new() -> GlobalDomains {
39        GlobalDomains {
40            r#type: None,
41            domains: None,
42            excluded: None,
43        }
44    }
45}