Interface DataLocation

interface DataLocation {
    key?: string;
    parameters?: any;
    path?: string;
    name?: string;
    type?: DataLocationType;
    isDefault?: boolean;
    read?: boolean;
    write?: boolean;
}

Properties

key?: string
parameters?: any
path?: string
name?: string
isDefault?: boolean
read?: boolean
write?: boolean