interface SviRecord {
    displayLabel?: string;
    fields?: {
        [index: string]: any;
    };
    id?: string;
    restrictedFields?: {
        [index: string]: any;
    };
    type?: string;
    typeId?: number;
    typeVersion?: number;
}

Hierarchy

  • Record
    • SviRecord

Properties

displayLabel?: string
fields?: {
    [index: string]: any;
}
id?: string
restrictedFields?: {
    [index: string]: any;
}
type?: string
typeId?: number
typeVersion?: number