pub struct CcOfferRewards {
pub additional_details: Option<String>,
pub amount: Option<f64>,
pub category: Option<String>,
pub expiration_months: Option<f64>,
pub max_reward_tier: Option<f64>,
pub min_reward_tier: Option<f64>,
}Expand description
For cards with rewards programs, detailed rules about how the program works.
This type is not used in any activity, and only used as part of another schema.
Fields§
§additional_details: Option<String>Other limits, for example, if this rule only applies during an introductory period.
amount: Option<f64>The number of units rewarded per purchase dollar.
category: Option<String>The kind of purchases covered by this rule.
expiration_months: Option<f64>How long rewards granted by this rule last.
max_reward_tier: Option<f64>The maximum purchase amount in the given category for this rule to apply.
min_reward_tier: Option<f64>The minimum purchase amount in the given category before this rule applies.
Trait Implementations§
Source§impl Clone for CcOfferRewards
impl Clone for CcOfferRewards
Source§fn clone(&self) -> CcOfferRewards
fn clone(&self) -> CcOfferRewards
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CcOfferRewards
impl Debug for CcOfferRewards
Source§impl Default for CcOfferRewards
impl Default for CcOfferRewards
Source§fn default() -> CcOfferRewards
fn default() -> CcOfferRewards
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CcOfferRewards
impl<'de> Deserialize<'de> for CcOfferRewards
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl NestedType for CcOfferRewards
impl Part for CcOfferRewards
Auto Trait Implementations§
impl Freeze for CcOfferRewards
impl RefUnwindSafe for CcOfferRewards
impl Send for CcOfferRewards
impl Sync for CcOfferRewards
impl Unpin for CcOfferRewards
impl UnsafeUnpin for CcOfferRewards
impl UnwindSafe for CcOfferRewards
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