pub struct DepositSwitchStateUpdateWebhook {
pub webhook_type: Option<String>,
pub webhook_code: Option<String>,
pub state: Option<String>,
pub deposit_switch_id: Option<String>,
}Fields
webhook_type: Option<String>"DEPOSIT_SWITCH"
webhook_code: Option<String>"SWITCH_STATE_UPDATE"
state: Option<String>The state, or status, of the deposit switch.
initialized: The deposit switch has been initialized with the user entering the information required to submit the deposit switch request.
processing: The deposit switch request has been submitted and is being processed.
completed: The user’s employer has fulfilled and completed the deposit switch request.
error: There was an error processing the deposit switch request.
For more information, see the Deposit Switch API reference.
deposit_switch_id: Option<String>The ID of the deposit switch.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for DepositSwitchStateUpdateWebhook
impl<'de> Deserialize<'de> for DepositSwitchStateUpdateWebhook
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
Auto Trait Implementations
impl RefUnwindSafe for DepositSwitchStateUpdateWebhook
impl Send for DepositSwitchStateUpdateWebhook
impl Sync for DepositSwitchStateUpdateWebhook
impl Unpin for DepositSwitchStateUpdateWebhook
impl UnwindSafe for DepositSwitchStateUpdateWebhook
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more