Hazem Borham
01/18/2023, 10:02 PMoneof
? Curious if anyone has any matching examples for the following
message FooResponse {
string description = 1;
repeated Field fields = 2;
}
message Field {
string id = 1
oneof field_data {
TextField textInput = 6;
ChoiceField choiceInput = 7;
}
}
example json to match on
{
"description": "foo",
"fields": [
{
"id": "123",
"textInput": {}
},
{
"id": "123",
"choice": {}
}
]
}
uglyog
Hazem Borham
01/18/2023, 10:05 PMHazem Borham
01/18/2023, 10:07 PMHazem Borham
01/18/2023, 10:08 PMuglyog
Hazem Borham
01/18/2023, 10:16 PM