privacy.com
Version:
Wrapper for the Privacy.com API using Axios and TypeScript
22 lines (19 loc) • 442 B
text/typescript
import { Card } from "../../src/objects";
import { privacyFundingAccount } from "./fundingAccount";
const privacyCard: Card = {
created: "",
cvv: "",
funding: privacyFundingAccount,
exp_month: "",
exp_year: "",
hostname: "",
last_four: "",
memo: "",
pan: "",
spend_limit: 0,
state: "CLOSED",
token: "",
type: "SINGLE_USE",
spend_limit_duration: "ANNUALLY",
};
export { privacyCard };