pub enum InvoicePaymentReminderStatus {
Pending,
NotApplicable,
Sent,
}
Expand description
The status of a payment request reminder.
Variants
Pending
The reminder will be sent on the relative_scheduled_date
(if the invoice is published).
NotApplicable
The reminder is not applicable and is not sent. The following are examples of when reminders are not applicable and are not sent:
- You schedule a reminder to be sent before the invoice is published.
- The invoice is configured with multiple payment requests and a payment request reminder is
configured to be sent after the next payment request
due_date
. - Two reminders (for different payment requests) are configured to be sent on the same date. Therefore, only one reminder is sent.
- You configure a reminder to be sent on the date that the invoice is scheduled to be sent.
- The payment request is already paid.
- The invoice status is
CANCELED
orFAILED
.
Sent
The reminder is sent.
Trait Implementations
sourceimpl Clone for InvoicePaymentReminderStatus
impl Clone for InvoicePaymentReminderStatus
sourcefn clone(&self) -> InvoicePaymentReminderStatus
fn clone(&self) -> InvoicePaymentReminderStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for InvoicePaymentReminderStatus
impl Debug for InvoicePaymentReminderStatus
sourceimpl<'de> Deserialize<'de> for InvoicePaymentReminderStatus
impl<'de> Deserialize<'de> for InvoicePaymentReminderStatus
sourcefn 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
sourceimpl PartialEq<InvoicePaymentReminderStatus> for InvoicePaymentReminderStatus
impl PartialEq<InvoicePaymentReminderStatus> for InvoicePaymentReminderStatus
sourcefn eq(&self, other: &InvoicePaymentReminderStatus) -> bool
fn eq(&self, other: &InvoicePaymentReminderStatus) -> bool
impl Eq for InvoicePaymentReminderStatus
impl StructuralEq for InvoicePaymentReminderStatus
impl StructuralPartialEq for InvoicePaymentReminderStatus
Auto Trait Implementations
impl RefUnwindSafe for InvoicePaymentReminderStatus
impl Send for InvoicePaymentReminderStatus
impl Sync for InvoicePaymentReminderStatus
impl Unpin for InvoicePaymentReminderStatus
impl UnwindSafe for InvoicePaymentReminderStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.