//! # Bank
//!
//! To get a consumer (private person) bank accounts the following services can be used. For
//! more information see
//!
use crate::{BankAccountRequest, Request, RequestBuilder, Uuid};
///Once a bank account retrieval is initiated the following method must
///be called until state has been set to Success or Failed.
pub fn get_bank_account_numbers_retrieval_status(id: Uuid) -> Request<BankAccountRequest> {
RequestBuilder::new(http::Method::GET, "/v1/bank/accounts/")
.path_param(id)
.build()
}