Export

AddressTransactionList

interface AddressTransactionList {
    data: Transaction[];
    has_more: boolean;
    next_page: string;
}

Properties

data: Transaction[]

Memberof

AddressTransactionList

has_more: boolean

True if this list has another page of items after this one that can be fetched.

Memberof

AddressTransactionList

next_page: string

The page token to be used to fetch the next page.

Memberof

AddressTransactionList