pub struct PostGwApiV1BankInstructionsRequest {
pub query: PostGwApiV1BankInstructionsRequestQuery,
pub body: InstructionRequestBody,
}Expand description
Create or delete bank instructions by accountId. Only ACH and EDDA are supported for ‘Create’.
Scope: bank-instructions.write
Security Policy: Signed JWT
Fields§
§query: PostGwApiV1BankInstructionsRequestQuery§body: InstructionRequestBodyImplementations§
Source§impl PostGwApiV1BankInstructionsRequest
impl PostGwApiV1BankInstructionsRequest
Sourcepub async fn parse_response(
req: Response,
) -> Result<PostGwApiV1BankInstructionsResponse>
pub async fn parse_response( req: Response, ) -> Result<PostGwApiV1BankInstructionsResponse>
Parse the HTTP response into the response enum.
Trait Implementations§
Source§impl Clone for PostGwApiV1BankInstructionsRequest
impl Clone for PostGwApiV1BankInstructionsRequest
Source§fn clone(&self) -> PostGwApiV1BankInstructionsRequest
fn clone(&self) -> PostGwApiV1BankInstructionsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'v_a> ValidateArgs<'v_a> for PostGwApiV1BankInstructionsRequest
impl<'v_a> ValidateArgs<'v_a> for PostGwApiV1BankInstructionsRequest
Auto Trait Implementations§
impl Freeze for PostGwApiV1BankInstructionsRequest
impl RefUnwindSafe for PostGwApiV1BankInstructionsRequest
impl Send for PostGwApiV1BankInstructionsRequest
impl Sync for PostGwApiV1BankInstructionsRequest
impl Unpin for PostGwApiV1BankInstructionsRequest
impl UnsafeUnpin for PostGwApiV1BankInstructionsRequest
impl UnwindSafe for PostGwApiV1BankInstructionsRequest
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