pub struct PatchApplicationSchema {
pub reference_id: Option<String>,
pub approval_status: Option<String>,
pub accounts: Option<Vec<PatchAccountSchema>>,
pub applicants: Option<Vec<PatchApplicantSchema>>,
pub integration_event: Option<IntegrationEventSchema>,
}
Fields§
§reference_id: Option<String>
Optional reference ID for matching records with Blend’s application object
approval_status: Option<String>
Decision regarding opening the account
accounts: Option<Vec<PatchAccountSchema>>
List of accounts with their account/routing numbers
applicants: Option<Vec<PatchApplicantSchema>>
List of applicants with their member numbers
integration_event: Option<IntegrationEventSchema>
Trait Implementations§
Source§impl Debug for PatchApplicationSchema
impl Debug for PatchApplicationSchema
Source§impl<'de> Deserialize<'de> for PatchApplicationSchema
impl<'de> Deserialize<'de> for PatchApplicationSchema
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 Display for PatchApplicationSchema
impl Display for PatchApplicationSchema
Auto Trait Implementations§
impl Freeze for PatchApplicationSchema
impl RefUnwindSafe for PatchApplicationSchema
impl Send for PatchApplicationSchema
impl Sync for PatchApplicationSchema
impl Unpin for PatchApplicationSchema
impl UnwindSafe for PatchApplicationSchema
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