Represents a list of customer deposits.

interface CustomerDepositList {
    deposits: CustomerDeposit[];
    meta: PagingResultMeta;
}

Properties

Properties

deposits: CustomerDeposit[]

List of customer deposits.

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