[][src]Struct isilon::models::LicenseLicense

pub struct LicenseLicense {
    pub days_since_expiry: Option<i32>,
    pub days_to_expiry: Option<i32>,
    pub expiration: Option<String>,
    pub expired_alert: bool,
    pub expiring_alert: bool,
    pub id: String,
    pub name: String,
    pub status: String,
    pub tiers: Vec<LicenseLicenseTier>,
}

Fields

days_since_expiry: Option<i32>

Number of days since a license expired.

days_to_expiry: Option<i32>

Number of days before a license expires.

expiration: Option<String>

Date of license expiry. Format is YYYY-MM-DD. It is not included if there is no expiration. Feature is considered expired at end of this day. The cluster time is used to determine expiry.

expired_alert: bool

True when we are generating an alert that this feature has expired.

expiring_alert: bool

True when we are generating an alert that this feature is expiring.

id: String

Name of the licensed feature.

name: String

Name of the licensed feature.

status: String

Current status of the license.

tiers: Vec<LicenseLicenseTier>

Tiered License details.

Trait Implementations

impl Debug for LicenseLicense[src]

impl Serialize for LicenseLicense[src]

impl<'de> Deserialize<'de> for LicenseLicense[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T