Interface NetworksResponse

Response interface for networks

interface NetworksResponse {
    data: Network[];
    links: {
        first: string;
        last: string;
        next: null | string;
        prev: null | string;
    };
}

Properties

Properties

data: Network[]
links: { first: string; last: string; next: null | string; prev: null | string }