pub struct ProcessorSignalDecisionReportRequest {
pub amount_instantly_available: Option<f64>,
pub client_transaction_id: String,
pub days_funds_on_hold: Option<i64>,
pub decision_outcome: Option<SignalDecisionOutcome>,
pub initiated: bool,
pub payment_method: Option<SignalPaymentMethod>,
pub processor_token: String,
}
Expand description
You should use this struct via [PlaidClient::processor_signal_decision_report
].
On request success, this will return a [ProcessorSignalDecisionReportResponse
].
Fields§
§amount_instantly_available: Option<f64>
§client_transaction_id: String
§days_funds_on_hold: Option<i64>
§decision_outcome: Option<SignalDecisionOutcome>
§initiated: bool
§payment_method: Option<SignalPaymentMethod>
§processor_token: String
Trait Implementations§
Source§impl Clone for ProcessorSignalDecisionReportRequest
impl Clone for ProcessorSignalDecisionReportRequest
Source§fn clone(&self) -> ProcessorSignalDecisionReportRequest
fn clone(&self) -> ProcessorSignalDecisionReportRequest
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<'de> Deserialize<'de> for ProcessorSignalDecisionReportRequest
impl<'de> Deserialize<'de> for ProcessorSignalDecisionReportRequest
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 ProcessorSignalDecisionReportRequest
impl RefUnwindSafe for ProcessorSignalDecisionReportRequest
impl Send for ProcessorSignalDecisionReportRequest
impl Sync for ProcessorSignalDecisionReportRequest
impl Unpin for ProcessorSignalDecisionReportRequest
impl UnwindSafe for ProcessorSignalDecisionReportRequest
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