UNPKG

react-native-unit-components

Version:

Unit React Native components

49 lines (48 loc) 856 B
import { UNCents } from '../payment/payments.types'; import { UNDirection } from '../types'; import { UNTransactionTypes } from './transactions.types'; export type UNFeeReversalTransaction = { type: UNTransactionTypes.FeeReversal id: number attributes: { createdAt: Date amount: UNCents direction: UNDirection balance: UNCents summary: string } relationships: { account: { data: { type: string id: number } } customer?: { data: { type: string id: number } } customers?: { data: [ { type: 'customer' id: string } ] } relatedTransaction: { data: { type: string id: number } } org?: { data: { type: string id: number } } } };