privacy.com
Version:
Wrapper for the Privacy.com API using Axios and TypeScript
16 lines (15 loc) • 407 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const _1 = require(".");
const _defaultParams = {};
/**
* List cards associated with the privacy account
*/
class ListCardsRequest extends _1.GetEndpoint {
constructor(params = _defaultParams) {
super();
this.path = "/card";
this.params = params;
}
}
exports.ListCardsRequest = ListCardsRequest;