import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http'; import { Observable } from 'rxjs'; import { DepositBankAccountBankModel } from '../model/depositBankAccount'; import { DepositBankAccountListBankModel } from '../model/depositBankAccountList'; import { PostDepositBankAccountBankModel } from '../model/postDepositBankAccount'; import { Configuration } from '../configuration'; import * as i0 from "@angular/core"; export declare class DepositBankAccountsService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: Configuration; encoder: HttpParameterCodec; constructor(httpClient: HttpClient, basePath: string, configuration: Configuration); private addToHttpParams; private addToHttpParamsRecursive; /** * Create Deposit Bank Account * Creates a deposit bank account. ## State | State | Description | |-------|-------------| | storing | The Platform is storing the deposit bank account details in our private store | | created | The Platform has created the deposit bank account | Required scope: **deposit_bank_accounts:execute** * @param postDepositBankAccountBankModel * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ createDepositBankAccount(postDepositBankAccountBankModel: PostDepositBankAccountBankModel, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable; createDepositBankAccount(postDepositBankAccountBankModel: PostDepositBankAccountBankModel, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable>; createDepositBankAccount(postDepositBankAccountBankModel: PostDepositBankAccountBankModel, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable>; /** * Get Deposit Bank Account * Retrieves a deposit bank account. Required scope: **deposit_bank_accounts:read** * @param depositBankAccountGuid Identifier for the deposit bank account. * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ getDepositBankAccount(depositBankAccountGuid: string, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable; getDepositBankAccount(depositBankAccountGuid: string, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable>; getDepositBankAccount(depositBankAccountGuid: string, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable>; /** * List Deposit Bank Accounts * Retrieves a list of deposit bank accounts. Records are sorted by creation date in descending order. Required scope: **deposit_bank_accounts:read** * @param page The page index to retrieve. * @param perPage The number of entities per page to return. * @param guid Comma separated guids to list deposit bank accounts for. * @param bankGuid Comma separated bank_guids to list deposit bank accounts for. * @param customerGuid Comma separated customer_guids to list deposit bank accounts for. * @param label Comma separated labels to list deposit bank accounts for. * @param uniqueMemoId Comma separated unique memo ids to list deposit bank accounts for. * @param type Comma separated types to list deposit bank accounts for. * @param parentDepositBankAccountGuid Comma separated guids for parent accounts to list deposit bank accounts for. * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ listDepositBankAccounts(page?: string, perPage?: string, guid?: string, bankGuid?: string, customerGuid?: string, label?: string, uniqueMemoId?: string, type?: string, parentDepositBankAccountGuid?: string, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable; listDepositBankAccounts(page?: string, perPage?: string, guid?: string, bankGuid?: string, customerGuid?: string, label?: string, uniqueMemoId?: string, type?: string, parentDepositBankAccountGuid?: string, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable>; listDepositBankAccounts(page?: string, perPage?: string, guid?: string, bankGuid?: string, customerGuid?: string, label?: string, uniqueMemoId?: string, type?: string, parentDepositBankAccountGuid?: string, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }