UNPKG

@openweb3-io/wallet-pay

Version:

Wallet Pay API client and wallet pay verification library

12 lines (11 loc) 596 B
import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext } from '../http/http'; import { ResponseTransferOut } from '../models/ResponseTransferOut'; import { TransferIn } from '../models/TransferIn'; export declare class TransferApiRequestFactory extends BaseAPIRequestFactory { v1TransferCreate(transferIn: TransferIn, _options?: Configuration): Promise<RequestContext>; } export declare class TransferApiResponseProcessor { v1TransferCreate(response: ResponseContext): Promise<ResponseTransferOut>; }