paypal-rest-api
Version:
A typescript module for integrating with PayPal REST APIs.
13 lines (12 loc) • 397 B
TypeScript
import { IModel } from "../../abstracts/model";
import { ILink } from "../../api/types";
export interface IWebhookEvent extends IModel {
readonly id?: string;
readonly create_time?: string;
readonly resource_type?: string;
readonly event_version?: string;
readonly event_type?: string;
readonly links: ILink[];
readonly summary?: string;
readonly resource?: any;
}