Response for bulk feature creation.
| 139 | |
| 140 | |
| 141 | class FeatureBulkCreateResponse(BaseModel): |
| 142 | """Response for bulk feature creation.""" |
| 143 | created: int |
| 144 | features: list[FeatureResponse] |
| 145 | |
| 146 | |
| 147 | # ============================================================================ |
no outgoing calls
no test coverage detected