UNPKG

paypal-rest-api

Version:

A typescript module for integrating with PayPal REST APIs.

7 lines (6 loc) 166 B
import { ILink } from "../../api/types"; import { IPayment } from "./common"; export interface IPaymentListResponse { payments: IPayment[]; links: ILink[]; }