@openweb3-io/waas
Version:
WaaS API client and WaaS verification library
22 lines (21 loc) • 1.62 kB
TypeScript
import { BaseAPIRequestFactory } from './baseapi';
import { Configuration } from '../configuration';
import { RequestContext, ResponseContext, HttpInfo } from '../http/http';
import { CreateEndpoint } from '../models/CreateEndpoint';
import { CursorPageEndpoint } from '../models/CursorPageEndpoint';
import { Endpoint } from '../models/Endpoint';
import { UpdateEndpoint } from '../models/UpdateEndpoint';
export declare class WebhookEndpointsApiRequestFactory extends BaseAPIRequestFactory {
v1WebhooksEndpointCreate(createEndpoint: CreateEndpoint, _options?: Configuration): Promise<RequestContext>;
v1WebhooksEndpointDelete(endpointId: string, _options?: Configuration): Promise<RequestContext>;
v1WebhooksEndpointList(cursor?: string, limit?: number, _options?: Configuration): Promise<RequestContext>;
v1WebhooksEndpointRetrieve(endpointId: string, _options?: Configuration): Promise<RequestContext>;
v1WebhooksEndpointUpdate(endpointId: string, updateEndpoint: UpdateEndpoint, _options?: Configuration): Promise<RequestContext>;
}
export declare class WebhookEndpointsApiResponseProcessor {
v1WebhooksEndpointCreateWithHttpInfo(response: ResponseContext): Promise<HttpInfo<Endpoint>>;
v1WebhooksEndpointDeleteWithHttpInfo(response: ResponseContext): Promise<HttpInfo<Endpoint>>;
v1WebhooksEndpointListWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CursorPageEndpoint>>;
v1WebhooksEndpointRetrieveWithHttpInfo(response: ResponseContext): Promise<HttpInfo<Endpoint>>;
v1WebhooksEndpointUpdateWithHttpInfo(response: ResponseContext): Promise<HttpInfo<Endpoint>>;
}