We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3711af commit 82f4101Copy full SHA for 82f4101
1 file changed
linode_api4/objects/monitor.py
@@ -459,7 +459,7 @@ class ChannelDetails(JSONObject):
459
460
461
@dataclass
462
-class AlertsReference(JSONObject):
+class AlertInfo(JSONObject):
463
"""
464
Represents a reference to alerts associated with an alert channel.
465
Fields:
@@ -495,7 +495,7 @@ class AlertChannel(Base):
495
"type": Property(),
496
"channel_type": Property(),
497
"details": Property(mutable=False, json_object=ChannelDetails),
498
- "alerts": Property(mutable=False, json_object=AlertsReference),
+ "alerts": Property(mutable=False, json_object=AlertInfo),
499
"content": Property(mutable=False, json_object=ChannelContent),
500
"created": Property(is_datetime=True),
501
"updated": Property(is_datetime=True),
0 commit comments