Interface PoolsResponse

Response interface for pools endpoints

interface PoolsResponse {
    data: Pool[];
    links: {
        first: string;
        last: string;
        next: null | string;
        prev: null | string;
    };
    meta: { total_pages: number; total_records: number };
}

Properties

Properties

data: Pool[]
links: { first: string; last: string; next: null | string; prev: null | string }
meta: { total_pages: number; total_records: number }