@@ -65,11 +65,11 @@ def openapi_types(_):
6565 def __init__ (
6666 self_ ,
6767 config : SyntheticsMobileTestConfig ,
68+ message : str ,
6869 name : str ,
6970 options : SyntheticsMobileTestOptions ,
7071 type : SyntheticsMobileTestType ,
7172 device_ids : Union [List [str ], UnsetType ] = unset ,
72- message : Union [str , UnsetType ] = unset ,
7373 monitor_id : Union [int , UnsetType ] = unset ,
7474 public_id : Union [str , UnsetType ] = unset ,
7575 status : Union [SyntheticsTestPauseStatus , UnsetType ] = unset ,
@@ -87,7 +87,7 @@ def __init__(
8787 :type device_ids: [str], optional
8888
8989 :param message: Notification message associated with the test.
90- :type message: str, optional
90+ :type message: str
9191
9292 :param monitor_id: The associated monitor ID.
9393 :type monitor_id: int, optional
@@ -116,8 +116,6 @@ def __init__(
116116 """
117117 if device_ids is not unset :
118118 kwargs ["device_ids" ] = device_ids
119- if message is not unset :
120- kwargs ["message" ] = message
121119 if monitor_id is not unset :
122120 kwargs ["monitor_id" ] = monitor_id
123121 if public_id is not unset :
@@ -131,6 +129,7 @@ def __init__(
131129 super ().__init__ (kwargs )
132130
133131 self_ .config = config
132+ self_ .message = message
134133 self_ .name = name
135134 self_ .options = options
136135 self_ .type = type
0 commit comments