We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d91ce commit 4830697Copy full SHA for 4830697
proto/shared/shared.data_type.proto
@@ -107,10 +107,17 @@ message GenericType {
107
}
108
109
// target get mapped to source
110
+enum GenericCombinationStrategy {
111
+ AND = 0;
112
+ OR = 1;
113
+}
114
+
115
message GenericMapper {
116
// can point to another generic or to a resolved data type
117
// Assigns source to this source
- DataTypeIdentifier source = 1;
118
+ repeated DataTypeIdentifier source = 1;
119
// can only be a generic key for example: 'T', 'V'
120
string target = 2;
121
122
+ repeated GenericCombinationStrategy generic_combinations = 3;
123
0 commit comments