Represents the backend response for user node sharing requests/invitations.

interface GetNodeSharingRequestsAPIResponse {
    next_request_id?: string;
    next_user_name?: string;
    sharing_requests: Record<string, any>[];
}

Properties

next_request_id?: string
next_user_name?: string
sharing_requests: Record<string, any>[]