/*
* Hanzo Cloud API
*
* The Hanzo Cloud API as a customer calls it: every operation under /v1/ except the operator's admin product, relay routes, legacy spellings and capabilities still reached by flag. Tagged by product: the first path segment after /v1/.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct OptinView {
/// Org is the caller's org's listing preference on the cross-org board, and whether this caller is allowed to change it. It is read for every caller — a member sees where their org stands even though only an admin may edit it.
#[serde(rename = "org", skip_serializing_if = "Option::is_none")]
pub org: Option<Box<models::OrgOptinView>>,
/// User is the caller's OWN listing preference, and whether they may change it.
#[serde(rename = "user", skip_serializing_if = "Option::is_none")]
pub user: Option<Box<models::UserOptinView>>,
}
impl OptinView {
pub fn new() -> OptinView {
OptinView {
org: None,
user: None,
}
}
}