Interface VIObject

interface VIObject {
    comments?: Comment[];
    createdAt: string;
    displayLabel?: string;
    fieldValues: FieldValues;
    fileOperations?: FileOperation[];
    id: string;
    lastUpdatedAt: string;
    objectTypeId: number;
    objectTypeName: string;
    sheets?: Sheet[];
    title?: string;
}

Properties

comments?: Comment[]
createdAt: string
displayLabel?: string
fieldValues: FieldValues
fileOperations?: FileOperation[]
id: string
lastUpdatedAt: string
objectTypeId: number
objectTypeName: string
sheets?: Sheet[]
title?: string