billecta 1.14.0

Generated Billecta API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # 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()
}