UNPKG

@openweb3-io/waas

Version:

WaaS API client and WaaS verification library

22 lines (21 loc) 1.53 kB
import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { CreateWalletRequest } from '../models/CreateWalletRequest'; import { CursorPageWallet } from '../models/CursorPageWallet'; import { UpdateWalletRequest } from '../models/UpdateWalletRequest'; import { Wallet } from '../models/Wallet'; export declare class WalletsApiRequestFactory extends BaseAPIRequestFactory { v1WalletsCreate(createWalletRequest: CreateWalletRequest, _options?: Configuration): Promise<RequestContext>; v1WalletsDelete(walletId: string, _options?: Configuration): Promise<RequestContext>; v1WalletsList(cursor?: string, limit?: number, _options?: Configuration): Promise<RequestContext>; v1WalletsRetrieve(walletId: string, _options?: Configuration): Promise<RequestContext>; v1WalletsUpdate(walletId: string, updateWalletRequest: UpdateWalletRequest, _options?: Configuration): Promise<RequestContext>; } export declare class WalletsApiResponseProcessor { v1WalletsCreateWithHttpInfo(response: ResponseContext): Promise<HttpInfo<Wallet>>; v1WalletsDeleteWithHttpInfo(response: ResponseContext): Promise<HttpInfo<Wallet>>; v1WalletsListWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CursorPageWallet>>; v1WalletsRetrieveWithHttpInfo(response: ResponseContext): Promise<HttpInfo<Wallet>>; v1WalletsUpdateWithHttpInfo(response: ResponseContext): Promise<HttpInfo<Wallet>>; }