UNPKG

@openweb3-io/wallet-pay

Version:

Wallet Pay API client and wallet pay verification library

20 lines (19 loc) 1.28 kB
import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext } from '../http/http'; import { EndpointIn } from '../models/EndpointIn'; import { Ordering } from '../models/Ordering'; import { ResponseEndpointOut } from '../models/ResponseEndpointOut'; import { ResponseListEndpointOut } from '../models/ResponseListEndpointOut'; export declare class WebhookEndpointApiRequestFactory extends BaseAPIRequestFactory { v1EndpointCreate(endpointIn: EndpointIn, _options?: Configuration): Promise<RequestContext>; v1EndpointDelete(endpointId: string, _options?: Configuration): Promise<RequestContext>; v1EndpointGet(endpointId: string, _options?: Configuration): Promise<RequestContext>; v1EndpointList(limit?: number, cursor?: string, ordering?: Ordering, _options?: Configuration): Promise<RequestContext>; } export declare class WebhookEndpointApiResponseProcessor { v1EndpointCreate(response: ResponseContext): Promise<ResponseEndpointOut>; v1EndpointDelete(response: ResponseContext): Promise<ResponseEndpointOut>; v1EndpointGet(response: ResponseContext): Promise<ResponseEndpointOut>; v1EndpointList(response: ResponseContext): Promise<ResponseListEndpointOut>; }