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

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

Properties

fetchNext?: () => Promise<ESPGroupSharingResponse>
hasNext: boolean
sharedRequests: ESPGroupSharingRequest[]