@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
24 lines (23 loc) • 581 B
TypeScript
import { OperationType, TransactionType } from '../response';
declare class AmountFilter {
op: string;
value: string;
}
export declare class TransactionFilter {
id?: string;
from?: number;
amount?: AmountFilter[];
to?: number;
account?: string;
counterAccount?: string;
currency?: string;
currencies?: string[];
transactionTypes?: TransactionType[];
paymentId?: string;
transactionCode?: string;
senderNote?: string;
recipientNote?: string;
opType?: OperationType;
transactionType?: TransactionType;
}
export {};