UNPKG

privacy.com

Version:

Wrapper for the Privacy.com API using Axios and TypeScript

16 lines (15 loc) 520 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const __1 = require("../"); /** * Returns (aka refunds) an amount back to a card. Returns are cleared immediately and do not spend time in a "pending" state. * @remarks Refund — value is pushed onto card */ class SimulateReturnRequest extends __1.PostEndpoint { constructor(params) { super(); this.path = "/simulate/return"; this.params = params; } } exports.SimulateReturnRequest = SimulateReturnRequest;