use serde::{Deserialize, Serialize};
use crate::models;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SelfHostedOrganizationLicenseRequestModel {
#[serde(
rename = "licenseKey",
alias = "LicenseKey",
skip_serializing_if = "Option::is_none"
)]
pub license_key: Option<String>,
#[serde(
rename = "billingSyncKey",
alias = "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,
}
}
}