UNPKG
privacy.com
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.1
0.3.0
0.2.0
0.1.0
Wrapper for the Privacy.com API using Axios and TypeScript
jeremigendron/privacy.com
privacy.com
/
test
/
mocks
/
fundingAccount.ts
14 lines
(11 loc)
•
276 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
FundingAccount
}
from
"../../src/objects"
;
const
privacyFundingAccount
:
FundingAccount
= {
account_name
:
""
,
created
:
""
,
last_four
:
""
,
nickname
:
""
,
state
:
"ENABLED"
,
token
:
""
,
type
:
"CARD_DEBIT"
, };
export
{ privacyFundingAccount };