notbank
Version:
The Notbank for Node.js
15 lines (14 loc) • 435 B
TypeScript
import { IntTransactionSubType } from "../enums/intTransactionSubType.js";
import { IntTransactionType } from "../enums/intTransactionType.js";
export interface GetTransactionsRequest {
from_date?: string;
to_date?: string;
sort?: string;
currency?: string;
page?: number;
page_size?: number;
user_id?: string;
account_id?: string;
type?: IntTransactionType;
sub_type?: IntTransactionSubType;
}