Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | 265x | import React from "react";
export enum TransactionType {
PRE_CHARGEBACK_REFUND = "pre_chargeback_refund",
TRANSFER_RETURN = "transfer_return"
}
export enum TransactionStatus {
CHARGEBACK = "Chargeback",
MONEY_TRANSFER = "Money Transfer",
VOIDED = "Voided",
CHARGEBACK_REVERSAL = "Chargeback Reversal",
SETTLED = "Settled",
REFUNDED = "Refunded",
DECLINED = "Declined",
SENT = "Sent",
PENDING = "Pending",
AUTHORIZED = "Authorized",
READY_TO_PROCESS = "Ready to Process",
SENDING = "Sending",
CANCELED = "Canceled",
REQUESTED = "Requested",
REFUND_PENDING = "Refund Pending",
REFUND_DECLINED = "Refund Declined",
REFUND_ERROR = "Refund Error",
REFUND_CANCELED = "Refund Canceled",
CREATED = "Created",
QUARANTINED = "Quarantined",
CAPTURED = "Captured",
PRE_CHARGEBACK_REFUND = "Chargeback Refund",
ERROR = "Error",
}
export type TMetadata = Record<string, any> | null;
export const DISPLAY_TYPE = {
MONEY_TRANSFER: "Money Transfer",
CREDIT_CARD: "Credit Card",
DEBIT_CARD: "Debit Card",
RESERVE_DEPOSIT: "Reserve Deposit",
RESERVE_RELEASE: "Reserve Release",
} as const;
export type TDisplayType = (typeof DISPLAY_TYPE)[keyof typeof DISPLAY_TYPE];
export interface ISectionItem {
key?: number;
title: string;
value: any;
isPhoneNumber?: boolean;
isLink?: boolean;
canBeCopied?: boolean;
hideOverflow?: boolean;
split?: boolean;
suf?: string;
highlight?: boolean;
isAmount?: boolean;
hidden?: boolean;
showCurrency?: boolean;
notes?: string;
icon?: React.ReactElement;
}
export interface IMetadataItem extends ISectionItem {
string?: string;
showDivider?: boolean;
}
|