/** * Catapult REST Endpoints * OpenAPI Specification of catapult-rest * * The version of the OpenAPI document: 1.0.4 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import type { AccountIds, AccountInfoDTO, AccountOrderByEnum, AccountPage, MerkleStateInfoDTO, Order } from '../models/index'; export interface GetAccountInfoRequest { accountId: string; } export interface GetAccountInfoMerkleRequest { accountId: string; } export interface GetAccountsInfoRequest { accountIds?: AccountIds; } export interface SearchAccountsRequest { pageSize?: number; pageNumber?: number; offset?: string; order?: Order; orderBy?: AccountOrderByEnum; mosaicId?: string; } /** * */ export declare class AccountRoutesApi extends runtime.BaseAPI { /** * Returns the account information. * Get account information */ getAccountInfoRaw(requestParameters: GetAccountInfoRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns the account information. * Get account information */ getAccountInfo(requestParameters: GetAccountInfoRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Returns the account merkle information. * Get account merkle information */ getAccountInfoMerkleRaw(requestParameters: GetAccountInfoMerkleRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns the account merkle information. * Get account merkle information */ getAccountInfoMerkle(requestParameters: GetAccountInfoMerkleRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Returns the account information for an array of accounts. * Get accounts information */ getAccountsInfoRaw(requestParameters: GetAccountsInfoRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; /** * Returns the account information for an array of accounts. * Get accounts information */ getAccountsInfo(requestParameters?: GetAccountsInfoRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Gets an array of accounts. * Search accounts */ searchAccountsRaw(requestParameters: SearchAccountsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Gets an array of accounts. * Search accounts */ searchAccounts(requestParameters?: SearchAccountsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }