UNPKG

paypal-rest-api

Version:

A typescript module for integrating with PayPal REST APIs.

11 lines (10 loc) 404 B
import { ICurrency, IResource } from "../../payment/types"; export interface ISale extends IResource { readonly purchase_unit_reference_id?: string; readonly clearing_time?: string; readonly payment_hold_status?: string; readonly payment_hold_reasons?: string[]; readonly transaction_fee?: ICurrency; readonly exchange_rate?: string; readonly billing_agreement_id?: string; }