pub struct PostGwApiV1InstructionsQueryRequest {
pub query: PostGwApiV1InstructionsQueryRequestQuery,
pub body: QueryRequestBody4,
}Expand description
Query list of recent transactions (up to 30 days) based on accountId.
Scope: instructions.read
Security Policy: Signed JWT
Fields§
§query: PostGwApiV1InstructionsQueryRequestQuery§body: QueryRequestBody4Create recent instructions request body
Implementations§
Source§impl PostGwApiV1InstructionsQueryRequest
impl PostGwApiV1InstructionsQueryRequest
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 PostGwApiV1InstructionsQueryRequest
impl Clone for PostGwApiV1InstructionsQueryRequest
Source§fn clone(&self) -> PostGwApiV1InstructionsQueryRequest
fn clone(&self) -> PostGwApiV1InstructionsQueryRequest
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 PostGwApiV1InstructionsQueryRequest
impl<'v_a> ValidateArgs<'v_a> for PostGwApiV1InstructionsQueryRequest
Auto Trait Implementations§
impl Freeze for PostGwApiV1InstructionsQueryRequest
impl RefUnwindSafe for PostGwApiV1InstructionsQueryRequest
impl Send for PostGwApiV1InstructionsQueryRequest
impl Sync for PostGwApiV1InstructionsQueryRequest
impl Unpin for PostGwApiV1InstructionsQueryRequest
impl UnsafeUnpin for PostGwApiV1InstructionsQueryRequest
impl UnwindSafe for PostGwApiV1InstructionsQueryRequest
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