Skip to content

Commit

Permalink
updated add vector layer to omit null
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnaglodha committed Aug 20, 2024
1 parent 1bb6b41 commit 44f4d1c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/geoserverx/models/featuretypes_layer.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ class Config:
dollar: Optional[str] = Field(..., alias="$")


class CRSetnryDict(BaseModel):
entry: CRSentry

class NativeBoundingBox(BaseModel):
minx: Optional[float] = Field(None, description='The min x coordinate')
maxx: Optional[float] = Field(None, description='The max x coordinate')
Expand Down

0 comments on commit 44f4d1c

Please sign in to comment.