@@ -85,7 +85,7 @@ public enum Kind implements JsonEnum {
85
85
86
86
DoubleRange ("double_range" ),
87
87
88
- DynamicProperty ("{dynamic_property }" ),
88
+ DynamicProperty ("{dynamic_type }" ),
89
89
90
90
Alias ("alias" ),
91
91
@@ -420,17 +420,17 @@ public DoubleRangeProperty doubleRange() {
420
420
}
421
421
422
422
/**
423
- * Is this variant instance of kind {@code {dynamic_property }}?
423
+ * Is this variant instance of kind {@code {dynamic_type }}?
424
424
*/
425
425
public boolean isDynamicProperty () {
426
426
return _kind == Kind .DynamicProperty ;
427
427
}
428
428
429
429
/**
430
- * Get the {@code {dynamic_property }} variant value.
430
+ * Get the {@code {dynamic_type }} variant value.
431
431
*
432
432
* @throws IllegalStateException
433
- * if the current variant is not of the {@code {dynamic_property }}
433
+ * if the current variant is not of the {@code {dynamic_type }}
434
434
* kind.
435
435
*/
436
436
public DynamicProperty dynamicProperty () {
@@ -1580,7 +1580,7 @@ protected static void setupPropertyDeserializer(ObjectDeserializer<Builder> op)
1580
1580
op .add (Builder ::denseVector , DenseVectorProperty ._DESERIALIZER , "dense_vector" );
1581
1581
op .add (Builder ::double_ , DoubleNumberProperty ._DESERIALIZER , "double" );
1582
1582
op .add (Builder ::doubleRange , DoubleRangeProperty ._DESERIALIZER , "double_range" );
1583
- op .add (Builder ::dynamicProperty , DynamicProperty ._DESERIALIZER , "{dynamic_property }" );
1583
+ op .add (Builder ::dynamicProperty , DynamicProperty ._DESERIALIZER , "{dynamic_type }" );
1584
1584
op .add (Builder ::alias , FieldAliasProperty ._DESERIALIZER , "alias" );
1585
1585
op .add (Builder ::flattened , FlattenedProperty ._DESERIALIZER , "flattened" );
1586
1586
op .add (Builder ::float_ , FloatNumberProperty ._DESERIALIZER , "float" );
0 commit comments