Represents the node sharing request.

interface ESPNodeSharingRequestInterface {
    id: string;
    metadata: Record<string, any>;
    newRole: string;
    nodeIDs: string[];
    primaryUsername: string;
    status: string;
    timestamp: number;
    transfer: boolean;
    username: string;
}

Implemented by

Properties

id: string
metadata: Record<string, any>
newRole: string
nodeIDs: string[]
primaryUsername: string
status: string
timestamp: number
transfer: boolean
username: string