Represents a list of transactions.

interface TransactionList {
    meta?: PagingResultMeta;
    transactions?: Transaction[];
}

Properties

Properties

Paging information regarding the returned records, when response is paginated.

transactions?: Transaction[]

List of transactions.