UNPKG

privacy.com

Version:

Wrapper for the Privacy.com API using Axios and TypeScript

16 lines (15 loc) 505 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const __1 = require("../"); /** * Clears an existing authorization. After this event, the transaction is no longer pending. * @remarks Clearing for an existing, pending authorization */ class SimulateClearingRequest extends __1.PostEndpoint { constructor(params) { super(); this.path = "/simulate/clearing"; this.params = params; } } exports.SimulateClearingRequest = SimulateClearingRequest;