Skip to content

Commit

Permalink
feat: add way of defining an attribute from first class field (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-steinfeld authored Mar 31, 2021
1 parent caef0e4 commit a974b62
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,13 @@ message AttributeDefinition {
oneof value {
Projection projection = 1;
string source_path = 2;
SourceField source_field = 3;
}

enum SourceField {
SOURCE_FIELD_UNSET = 0;
SOURCE_FIELD_START_TIME = 1;
SOURCE_FIELD_END_TIME = 2;
}
}

Expand Down

0 comments on commit a974b62

Please sign in to comment.