Represents the processed paginated response for user node sharing requests/invitations.

interface ESPNodeSharingResponse {
    fetchNext?: () => Promise<ESPNodeSharingResponse>;
    hasNext: boolean;
    sharedRequests: ESPNodeSharingRequest[];
}

Properties

fetchNext?: () => Promise<ESPNodeSharingResponse>
hasNext: boolean
sharedRequests: ESPNodeSharingRequest[]