You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The customer the deposit account belongs to. The customer is either a business or a individual.
500
+
* The Customer the deposit account belongs to. This relationship is only available if the account belongs to a single customer, business or individual.
500
501
*/
501
-
customer: Relationship
502
+
customer?: Relationship
503
+
504
+
/**
505
+
* The list of Customers the deposit account belongs to. This relationship is only available if the account belongs to multiple individual customers.
* Type of the transaction resource. The value is always checkDepositTransaction.
1318
+
*/
1319
+
type: "checkDepositTransaction"
1320
+
1321
+
/**
1322
+
* JSON object representing the transaction data.
1323
+
*/
1324
+
attributes: {
1325
+
/**
1326
+
* Date only. The date the resource was created.
1327
+
* RFC3339 format. For more information: https://en.wikipedia.org/wiki/ISO_8601#RFCs
1328
+
*/
1329
+
createdAt: string
1330
+
1331
+
/**
1332
+
* The direction in which the funds flow. Common to all transaction types.
1333
+
*/
1334
+
direction: "Credit"|"Debit"
1335
+
1336
+
/**
1337
+
* The amount (cents) of the transaction. Common to all transaction types.
1338
+
*/
1339
+
amount: number
1340
+
1341
+
/**
1342
+
* The account balance (cents) after the transaction. Common to all transaction types.
1343
+
*/
1344
+
balance: number
1345
+
1346
+
/**
1347
+
* Summary of the transaction. Common to all transaction types.
1348
+
*/
1349
+
summary: string
1350
+
1351
+
/**
1352
+
* See [Tags](https://developers.unit.co/#tags).
1353
+
*/
1354
+
tags?: object
1355
+
}
1356
+
1357
+
/**
1358
+
* Describes relationships between the transaction resource and other resources (account, customer, checkDeposi).
1359
+
*/
1360
+
relationships: {
1361
+
/**
1362
+
* The Deposit Account of the customer.
1363
+
*/
1364
+
account: Relationship
1365
+
1366
+
/**
1367
+
* The Customer the deposit account belongs to. This relationship is only available if the account belongs to a single customer, business or individual.
1368
+
*/
1369
+
customer?: Relationship
1370
+
1371
+
/**
1372
+
* The list of Customers the deposit account belongs to. This relationship is only available if the account belongs to multiple individual customers.
1373
+
*/
1374
+
customers?: Relationship[]
1375
+
1376
+
/**
1377
+
* The Check Deposit the transaction is related to.
1378
+
*/
1379
+
checkDeposit: Relationship
1380
+
}
1381
+
}
1382
+
1383
+
exportinterfaceReturnedCheckDepositTransaction{
1384
+
/**
1385
+
* Identifier of the transaction resource.
1386
+
*/
1387
+
id: string
1388
+
1389
+
/**
1390
+
* Type of the transaction resource. The value is always returnedCheckDepositTransaction.
1391
+
*/
1392
+
type: "returnedCheckDepositTransaction"
1393
+
1394
+
/**
1395
+
* JSON object representing the transaction data.
1396
+
*/
1397
+
attributes: {
1398
+
/**
1399
+
* Date only. The date the resource was created.
1400
+
* RFC3339 format. For more information: https://en.wikipedia.org/wiki/ISO_8601#RFCs
1401
+
*/
1402
+
createdAt: string
1403
+
1404
+
/**
1405
+
* The direction in which the funds flow. Common to all transaction types.
1406
+
*/
1407
+
direction: "Credit"|"Debit"
1408
+
1409
+
/**
1410
+
* The amount (cents) of the transaction. Common to all transaction types.
1411
+
*/
1412
+
amount: number
1413
+
1414
+
/**
1415
+
* The account balance (cents) after the transaction. Common to all transaction types.
1416
+
*/
1417
+
balance: number
1418
+
1419
+
/**
1420
+
* Summary of the transaction. Common to all transaction types.
1421
+
*/
1422
+
summary: string
1423
+
1424
+
/**
1425
+
* The reason for the transaction return.
1426
+
*/
1427
+
reason: string
1428
+
1429
+
/**
1430
+
* See [Tags](https://developers.unit.co/#tags).
1431
+
*/
1432
+
tags?: object
1433
+
}
1434
+
1435
+
/**
1436
+
* Describes relationships between the transaction resource and other resources (account, customer, checkDeposi).
1437
+
*/
1438
+
relationships: {
1439
+
/**
1440
+
* The Deposit Account of the customer.
1441
+
*/
1442
+
account: Relationship
1443
+
1444
+
/**
1445
+
* The Customer the deposit account belongs to. This relationship is only available if the account belongs to a single customer, business or individual.
1446
+
*/
1447
+
customer?: Relationship
1448
+
1449
+
/**
1450
+
* The list of Customers the deposit account belongs to. This relationship is only available if the account belongs to multiple individual customers.
1451
+
*/
1452
+
customers?: Relationship[]
1453
+
1454
+
/**
1455
+
* The Check Deposit the transaction is related to.
0 commit comments