UNPKG

@openweb3-io/wallet-pay

Version:

Wallet Pay API client and wallet pay verification library

19 lines (18 loc) 1.25 kB
import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext } from '../http/http'; import { CreateEndpointRequest } from '../models/CreateEndpointRequest'; import { CursorPageEndpoint } from '../models/CursorPageEndpoint'; import { Endpoint } from '../models/Endpoint'; export declare class WebhookEndpointsApiRequestFactory extends BaseAPIRequestFactory { v1WebhookEndpointsCreate(createEndpointRequest: CreateEndpointRequest, _options?: Configuration): Promise<RequestContext>; v1WebhookEndpointsDelete(endpointId: string, _options?: Configuration): Promise<RequestContext>; v1WebhookEndpointsList(limit: number, cursor?: string, _options?: Configuration): Promise<RequestContext>; v1WebhookEndpointsRetrieve(endpointId: string, _options?: Configuration): Promise<RequestContext>; } export declare class WebhookEndpointsApiResponseProcessor { v1WebhookEndpointsCreate(response: ResponseContext): Promise<Endpoint>; v1WebhookEndpointsDelete(response: ResponseContext): Promise<void>; v1WebhookEndpointsList(response: ResponseContext): Promise<CursorPageEndpoint>; v1WebhookEndpointsRetrieve(response: ResponseContext): Promise<Endpoint>; }