Skip to content

Commit 4939068

Browse files
committed
fixed review comments fo mutable
1 parent 9725879 commit 4939068

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

linode_api4/objects/monitor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -415,10 +415,10 @@ class AlertChannel(Base):
415415
properties = {
416416
"id": Property(identifier=True),
417417
"label": Property(),
418-
"type": Property(AlertType),
418+
"type": Property(False, AlertType),
419419
"channel_type": Property(),
420-
"alerts": Property(List[Alert]),
421-
"content": Property(ChannelContent),
420+
"alerts": Property(False, List[Alert]),
421+
"content": Property(False, ChannelContent),
422422
"created": Property(is_datetime=True),
423423
"updated": Property(is_datetime=True),
424424
"created_by": Property(),

0 commit comments

Comments
 (0)