NumericField is used to define a numeric field in a schema definition
| 110 | |
| 111 | |
| 112 | class NumericField(Field): |
| 113 | class="st">""" |
| 114 | NumericField is used to define a numeric field in a schema definition |
| 115 | class="st">""" |
| 116 | |
| 117 | def __init__(self, name: str, **kwargs): |
| 118 | Field.__init__(self, name, args=[Field.NUMERIC], **kwargs) |
| 119 | |
| 120 | |
| 121 | class GeoShapeField(Field): |
no outgoing calls