UNPKG

@snapp-store/snapp-box-sdk

Version:
16 lines (15 loc) 731 B
import type { PullingEventDTO } from '../models/PullingEventDTO'; import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export declare class PullingService { readonly httpRequest: BaseHttpRequest; constructor(httpRequest: BaseHttpRequest); /** * Pull Events * If there are some failure during webhook calls we put your events on your pulling channel and you can use your customer token to fetch all failed messages with this API. * @param authorization Customer Token * @returns PullingEventDTO Success * @throws ApiError */ getV1Pulling(authorization: string): CancelablePromise<Array<PullingEventDTO>>; }