Interface GetDelegationsResponse

interface GetDelegationsResponse {
    delegation_responses: DelegationResponse[];
    pagination: {
        next_key: string;
        total: number;
    };
}

Properties

delegation_responses: DelegationResponse[]
pagination: {
    next_key: string;
    total: number;
}