@snapp-store/snapp-box-sdk
Version:
A javascript sdk for snapp box api
16 lines (15 loc) • 731 B
TypeScript
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>>;
}