Skip to content

Commit e72c598

Browse files
fix(dedibox): change ip_id from string to uint64 (scaleway#549)
Co-authored-by: Laure-di <62625835+Laure-di@users.noreply.github.com>
1 parent c5e076e commit e72c598

File tree

2 files changed

+2
-2
lines changed
  • scaleway/scaleway/dedibox/v1
  • scaleway-async/scaleway_async/dedibox/v1

2 files changed

+2
-2
lines changed

scaleway-async/scaleway_async/dedibox/v1/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ class OfferStorageInfo:
712712

713713
@dataclass
714714
class IP:
715-
ip_id: str
715+
ip_id: int
716716
"""
717717
ID of the IP.
718718
"""

scaleway/scaleway/dedibox/v1/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ class OfferStorageInfo:
712712

713713
@dataclass
714714
class IP:
715-
ip_id: str
715+
ip_id: int
716716
"""
717717
ID of the IP.
718718
"""

0 commit comments

Comments
 (0)