bitwarden_api_api/models/
self_hosted_organization_license_request_model.rsuse serde::{Deserialize, Serialize};
use crate::models;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SelfHostedOrganizationLicenseRequestModel {
#[serde(rename = "licenseKey", skip_serializing_if = "Option::is_none")]
pub license_key: Option<String>,
#[serde(rename = "billingSyncKey", skip_serializing_if = "Option::is_none")]
pub billing_sync_key: Option<String>,
}
impl SelfHostedOrganizationLicenseRequestModel {
pub fn new() -> SelfHostedOrganizationLicenseRequestModel {
SelfHostedOrganizationLicenseRequestModel {
license_key: None,
billing_sync_key: None,
}
}
}