Skip to content

Commit 82f4101

Browse files
committed
fixed reviewer comments
1 parent f3711af commit 82f4101

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

linode_api4/objects/monitor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ class ChannelDetails(JSONObject):
459459

460460

461461
@dataclass
462-
class AlertsReference(JSONObject):
462+
class AlertInfo(JSONObject):
463463
"""
464464
Represents a reference to alerts associated with an alert channel.
465465
Fields:
@@ -495,7 +495,7 @@ class AlertChannel(Base):
495495
"type": Property(),
496496
"channel_type": Property(),
497497
"details": Property(mutable=False, json_object=ChannelDetails),
498-
"alerts": Property(mutable=False, json_object=AlertsReference),
498+
"alerts": Property(mutable=False, json_object=AlertInfo),
499499
"content": Property(mutable=False, json_object=ChannelContent),
500500
"created": Property(is_datetime=True),
501501
"updated": Property(is_datetime=True),

0 commit comments

Comments
 (0)