pub struct EntitlementsActiveEntitlementSummary {
pub customer: String,
pub entitlements: List<EntitlementsActiveEntitlement>,
pub livemode: bool,
}
Expand description
A summary of a customer’s active entitlements.
Fields§
§customer: String
The customer that is entitled to this feature.
entitlements: List<EntitlementsActiveEntitlement>
The list of entitlements this customer has.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
Trait Implementations§
Source§impl Clone for EntitlementsActiveEntitlementSummary
impl Clone for EntitlementsActiveEntitlementSummary
Source§fn clone(&self) -> EntitlementsActiveEntitlementSummary
fn clone(&self) -> EntitlementsActiveEntitlementSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl FromValueOpt for EntitlementsActiveEntitlementSummary
impl FromValueOpt for EntitlementsActiveEntitlementSummary
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for EntitlementsActiveEntitlementSummary
impl RefUnwindSafe for EntitlementsActiveEntitlementSummary
impl Send for EntitlementsActiveEntitlementSummary
impl Sync for EntitlementsActiveEntitlementSummary
impl Unpin for EntitlementsActiveEntitlementSummary
impl UnwindSafe for EntitlementsActiveEntitlementSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more