You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kill switch value (true to enable, false to disable)
reason
str
Reason for enabling the kill switch (required when enabling)
[optional]
request_support
bool
Whether to request support from watchTowr (optional, defaults to false)
[optional]
Example
fromwatchtowr_api_sdk.models.update_kill_switch_request_dtoimportUpdateKillSwitchRequestDto# TODO update the JSON string belowjson="{}"# create an instance of UpdateKillSwitchRequestDto from a JSON stringupdate_kill_switch_request_dto_instance=UpdateKillSwitchRequestDto.from_json(json)
# print the JSON string representation of the objectprint(UpdateKillSwitchRequestDto.to_json())
# convert the object into a dictupdate_kill_switch_request_dto_dict=update_kill_switch_request_dto_instance.to_dict()
# create an instance of UpdateKillSwitchRequestDto from a dictupdate_kill_switch_request_dto_from_dict=UpdateKillSwitchRequestDto.from_dict(update_kill_switch_request_dto_dict)