UNPKG

mpp-sdk

Version:

SDK to talk to the Memento Payments Platform

9 lines (8 loc) 297 B
import { BaseEndpoint } from "./base"; export default class ServiceInvoicesEndpoint extends BaseEndpoint { /** * Downloads the PDF for a service invoice. * Returns the raw binary data as an ArrayBuffer. */ getPDF(id: string): Promise<import("..").MPPResult<ArrayBuffer>>; }