Struct egs_api::api::types::entitlement::Entitlement[][src]

pub struct Entitlement {
    pub id: String,
    pub entitlement_name: String,
    pub namespace: String,
    pub catalog_item_id: String,
    pub account_id: String,
    pub identity_id: String,
    pub entitlement_type: String,
    pub grant_date: String,
    pub consumable: bool,
    pub status: String,
    pub active: bool,
    pub use_count: i64,
    pub created: String,
    pub updated: String,
    pub group_entitlement: bool,
    pub original_use_count: Option<i64>,
    pub platform_type: Option<String>,
    pub country: Option<String>,
}

Fields

id: Stringentitlement_name: Stringnamespace: Stringcatalog_item_id: Stringaccount_id: Stringidentity_id: Stringentitlement_type: Stringgrant_date: Stringconsumable: boolstatus: Stringactive: booluse_count: i64created: Stringupdated: Stringgroup_entitlement: booloriginal_use_count: Option<i64>platform_type: Option<String>country: Option<String>

Trait Implementations

impl Clone for Entitlement[src]

impl Debug for Entitlement[src]

impl Default for Entitlement[src]

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

impl PartialEq<Entitlement> for Entitlement[src]

impl Serialize for Entitlement[src]

impl StructuralPartialEq for Entitlement[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.