pub enum CaptureStatusReason {
BuyerComplaint,
Chargeback,
Echeck,
InternationalWithdrawal,
Other,
PendingReview,
ReceivingPreferenceMandatesManualAction,
Refunded,
TransactionApprovedAwaitingFunding,
Unilateral,
VerificationRequired,
}
Expand description
The reason why the captured payment status is PENDING or DENIED.
Variants
BuyerComplaint
The payer initiated a dispute for this captured payment with PayPal.
Chargeback
The captured funds were reversed in response to the payer disputing this captured payment with the issuer of the financial instrument used to pay for this captured payment.
Echeck
The payer paid by an eCheck that has not yet cleared.
InternationalWithdrawal
Visit your online account. In your Account Overview, accept and deny this payment.
Other
No additional specific reason can be provided. For more information about this captured payment, visit your account online or contact PayPal.
PendingReview
The captured payment is pending manual review.
ReceivingPreferenceMandatesManualAction
The payee has not yet set up appropriate receiving preferences for their account. For more information about how to accept or deny this payment, visit your account online. This reason is typically offered in scenarios such as when the currency of the captured payment is different from the primary holding currency of the payee.
Refunded
The captured funds were refunded.
TransactionApprovedAwaitingFunding
The payer must send the funds for this captured payment. This code generally appears for manual EFTs.
Unilateral
The payee does not have a PayPal account.
VerificationRequired
The payee’s PayPal account is not verified.
Implementations
Trait Implementations
sourceimpl AsRef<str> for CaptureStatusReason
impl AsRef<str> for CaptureStatusReason
sourceimpl Clone for CaptureStatusReason
impl Clone for CaptureStatusReason
sourcefn clone(&self) -> CaptureStatusReason
fn clone(&self) -> CaptureStatusReason
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for CaptureStatusReason
impl Debug for CaptureStatusReason
sourceimpl<'de> Deserialize<'de> for CaptureStatusReason
impl<'de> Deserialize<'de> for CaptureStatusReason
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>,
sourceimpl Display for CaptureStatusReason
impl Display for CaptureStatusReason
sourceimpl PartialEq<CaptureStatusReason> for CaptureStatusReason
impl PartialEq<CaptureStatusReason> for CaptureStatusReason
sourcefn eq(&self, other: &CaptureStatusReason) -> bool
fn eq(&self, other: &CaptureStatusReason) -> bool
sourceimpl Serialize for CaptureStatusReason
impl Serialize for CaptureStatusReason
impl Copy for CaptureStatusReason
impl Eq for CaptureStatusReason
impl StructuralEq for CaptureStatusReason
impl StructuralPartialEq for CaptureStatusReason
Auto Trait Implementations
impl RefUnwindSafe for CaptureStatusReason
impl Send for CaptureStatusReason
impl Sync for CaptureStatusReason
impl Unpin for CaptureStatusReason
impl UnwindSafe for CaptureStatusReason
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
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
key
and return true
if they are equal.