Skip to main content

Interface: IGetPaymentListResponse

List of escrows returned from the indexer search function

Example

// Returned object would look e.g. like this:
{
totalCount: 10,
data: [
// List of IEscrowData objects
]
}

Properties

data

data: IEscrowData[]

Subset of the escrows matching the criteria based on the defined pagination

Defined in

typing/index.ts:1039


totalCount

totalCount: number

How many records match the criteria in total

Defined in

typing/index.ts:1037