hcloud 0.25.0

Unofficial Rust crate for accessing the Hetzner Cloud API
Documentation
/*
 * Hetzner Cloud API
 *
 * Copied from the official API documentation for the Public Hetzner Cloud.
 *
 * The version of the OpenAPI document: 0.28.0
 *
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CreateSubaccountRequestAccessSettings {
    /// Whether access from outside the Hetzner network is allowed.
    #[serde(
        rename = "reachable_externally",
        skip_serializing_if = "Option::is_none"
    )]
    pub reachable_externally: Option<bool>,
    /// Whether the Subaccount is read-only.
    #[serde(rename = "readonly", skip_serializing_if = "Option::is_none")]
    pub readonly: Option<bool>,
    /// Whether the Samba subsystem is enabled.
    #[serde(rename = "samba_enabled", skip_serializing_if = "Option::is_none")]
    pub samba_enabled: Option<bool>,
    /// Whether the SSH subsystem is enabled.
    #[serde(rename = "ssh_enabled", skip_serializing_if = "Option::is_none")]
    pub ssh_enabled: Option<bool>,
    /// Whether the WebDAV subsystem is enabled.
    #[serde(rename = "webdav_enabled", skip_serializing_if = "Option::is_none")]
    pub webdav_enabled: Option<bool>,
}

impl CreateSubaccountRequestAccessSettings {
    pub fn new() -> CreateSubaccountRequestAccessSettings {
        CreateSubaccountRequestAccessSettings {
            reachable_externally: None,
            readonly: None,
            samba_enabled: None,
            ssh_enabled: None,
            webdav_enabled: None,
        }
    }
}