Skip to content

Commit 42c2209

Browse files
authored
fix: radar types
2 parents 71baeb0 + 234b609 commit 42c2209

5 files changed

Lines changed: 5 additions & 10 deletions

File tree

src/cloudflare/types/radar/as112_timeseries_response.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from pydantic import Field as FieldInfo
88

99
from ..._models import BaseModel
10-
from .as112_timeseries_response import UnnamedTypeWithobjectParent2UnnamedTypeWithobjectParent2Item
1110

1211
__all__ = [
1312
"AS112TimeseriesResponse",
@@ -102,4 +101,4 @@ class AS112TimeseriesResponse(BaseModel):
102101
# Stub to indicate that arbitrary properties are accepted.
103102
# To access properties that are not valid identifiers you can use `getattr`, e.g.
104103
# `getattr(obj, '$type')`
105-
def __getattr__(self, attr: str) -> UnnamedTypeWithobjectParent2UnnamedTypeWithobjectParent2Item: ...
104+
def __getattr__(self, attr: str) -> object: ...

src/cloudflare/types/radar/attacks/layer3_timeseries_response.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from pydantic import Field as FieldInfo
88

99
from ...._models import BaseModel
10-
from .layer3_timeseries_response import UnnamedTypeWithobjectParent3UnnamedTypeWithobjectParent3Item
1110

1211
__all__ = [
1312
"Layer3TimeseriesResponse",
@@ -102,4 +101,4 @@ class Layer3TimeseriesResponse(BaseModel):
102101
# Stub to indicate that arbitrary properties are accepted.
103102
# To access properties that are not valid identifiers you can use `getattr`, e.g.
104103
# `getattr(obj, '$type')`
105-
def __getattr__(self, attr: str) -> UnnamedTypeWithobjectParent3UnnamedTypeWithobjectParent3Item: ...
104+
def __getattr__(self, attr: str) -> object: ...

src/cloudflare/types/radar/bot_timeseries_response.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from pydantic import Field as FieldInfo
88

99
from ..._models import BaseModel
10-
from .bot_timeseries_response import UnnamedTypeWithobjectParent0UnnamedTypeWithobjectParent0Item
1110

1211
__all__ = [
1312
"BotTimeseriesResponse",
@@ -102,4 +101,4 @@ class BotTimeseriesResponse(BaseModel):
102101
# Stub to indicate that arbitrary properties are accepted.
103102
# To access properties that are not valid identifiers you can use `getattr`, e.g.
104103
# `getattr(obj, '$type')`
105-
def __getattr__(self, attr: str) -> UnnamedTypeWithobjectParent0UnnamedTypeWithobjectParent0Item: ...
104+
def __getattr__(self, attr: str) -> object: ...

src/cloudflare/types/radar/dns_timeseries_response.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from pydantic import Field as FieldInfo
88

99
from ..._models import BaseModel
10-
from .dns_timeseries_response import UnnamedTypeWithobjectParent1UnnamedTypeWithobjectParent1Item
1110

1211
__all__ = [
1312
"DNSTimeseriesResponse",
@@ -102,4 +101,4 @@ class DNSTimeseriesResponse(BaseModel):
102101
# Stub to indicate that arbitrary properties are accepted.
103102
# To access properties that are not valid identifiers you can use `getattr`, e.g.
104103
# `getattr(obj, '$type')`
105-
def __getattr__(self, attr: str) -> UnnamedTypeWithobjectParent1UnnamedTypeWithobjectParent1Item: ...
104+
def __getattr__(self, attr: str) -> object: ...

src/cloudflare/types/radar/http_timeseries_response.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from pydantic import Field as FieldInfo
88

99
from ..._models import BaseModel
10-
from .http_timeseries_response import UnnamedTypeWithobjectParent4UnnamedTypeWithobjectParent4Item
1110

1211
__all__ = [
1312
"HTTPTimeseriesResponse",
@@ -102,4 +101,4 @@ class HTTPTimeseriesResponse(BaseModel):
102101
# Stub to indicate that arbitrary properties are accepted.
103102
# To access properties that are not valid identifiers you can use `getattr`, e.g.
104103
# `getattr(obj, '$type')`
105-
def __getattr__(self, attr: str) -> UnnamedTypeWithobjectParent4UnnamedTypeWithobjectParent4Item: ...
104+
def __getattr__(self, attr: str) -> object: ...

0 commit comments

Comments
 (0)