pub struct TransitionRule {
pub to: LifecycleState,
pub after_days: Option<u64>,
pub condition: Option<String>,
pub on_transition: Option<String>,
}Expand description
Rule for transitioning between lifecycle states
Fields§
§to: LifecycleStateTarget state to transition to
after_days: Option<u64>Time threshold in days before transition can occur
condition: Option<String>Optional condition that must be met (e.g., “payment_failed_count > 2”)
on_transition: Option<String>Optional callback to apply when transitioning
Trait Implementations§
Source§impl Clone for TransitionRule
impl Clone for TransitionRule
Source§fn clone(&self) -> TransitionRule
fn clone(&self) -> TransitionRule
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 Debug for TransitionRule
impl Debug for TransitionRule
Source§impl<'de> Deserialize<'de> for TransitionRule
impl<'de> Deserialize<'de> for TransitionRule
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
Auto Trait Implementations§
impl Freeze for TransitionRule
impl RefUnwindSafe for TransitionRule
impl Send for TransitionRule
impl Sync for TransitionRule
impl Unpin for TransitionRule
impl UnwindSafe for TransitionRule
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