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§
Source§impl Clone for InvoicePaymentReminderStatus
impl Clone for InvoicePaymentReminderStatus
Source§fn clone(&self) -> InvoicePaymentReminderStatus
fn clone(&self) -> InvoicePaymentReminderStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InvoicePaymentReminderStatus
impl Debug for InvoicePaymentReminderStatus
Source§impl<'de> Deserialize<'de> for InvoicePaymentReminderStatus
impl<'de> Deserialize<'de> for InvoicePaymentReminderStatus
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
Source§impl PartialEq for InvoicePaymentReminderStatus
impl PartialEq for InvoicePaymentReminderStatus
Source§fn eq(&self, other: &InvoicePaymentReminderStatus) -> bool
fn eq(&self, other: &InvoicePaymentReminderStatus) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for InvoicePaymentReminderStatus
impl StructuralPartialEq for InvoicePaymentReminderStatus
Auto Trait Implementations§
impl Freeze for InvoicePaymentReminderStatus
impl RefUnwindSafe for InvoicePaymentReminderStatus
impl Send for InvoicePaymentReminderStatus
impl Sync for InvoicePaymentReminderStatus
impl Unpin for InvoicePaymentReminderStatus
impl UnwindSafe for InvoicePaymentReminderStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.