interface AnnotationChangeById {
    id: number;
    update: {
        annotationType?: SetField<string>;
        data?: SetField<AnnotationData>;
        status?: SetField<AnnotationStatus>;
    };
}

Hierarchy (view full)

Properties

Properties

id: number
update: {
    annotationType?: SetField<string>;
    data?: SetField<AnnotationData>;
    status?: SetField<AnnotationStatus>;
}