Adds modified to the lineage view model

This commit is contained in:
cptran777 2018-09-14 09:47:00 -07:00
parent c94234a548
commit 3d00c8759d
2 changed files with 3 additions and 1 deletions

View File

@ -28,4 +28,6 @@ public class LineageView {
private String type;
private String actor;
private String modified;
}

View File

@ -23,7 +23,7 @@ interface IDatasetLineage {
dataset: IDatasetView;
type: string;
actor: string;
modified: string;
modified: string | undefined;
}
export { Relationships, RelationshipType, IDatasetLineage };