Class: TencentCloud::Mna::V20210119::SetNotifyUrlRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mna::V20210119::SetNotifyUrlRequest
- Defined in:
- lib/v20210119/models.rb
Overview
SetNotifyUrl请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(notifyurl = nil, callbackkey = nil, alarmvalue = nil) ⇒ SetNotifyUrlRequest
constructor
A new instance of SetNotifyUrlRequest.
Constructor Details
#initialize(notifyurl = nil, callbackkey = nil, alarmvalue = nil) ⇒ SetNotifyUrlRequest
Returns a new instance of SetNotifyUrlRequest.
2578 2579 2580 2581 2582 |
# File 'lib/v20210119/models.rb', line 2578 def initialize(notifyurl=nil, callbackkey=nil, alarmvalue=nil) @NotifyUrl = notifyurl @CallbackKey = callbackkey @AlarmValue = alarmvalue end |
Instance Attribute Details
#AlarmValue ⇒ Object
2576 2577 2578 |
# File 'lib/v20210119/models.rb', line 2576 def AlarmValue @AlarmValue end |
#CallbackKey ⇒ Object
2576 2577 2578 |
# File 'lib/v20210119/models.rb', line 2576 def CallbackKey @CallbackKey end |
#NotifyUrl ⇒ Object
2576 2577 2578 |
# File 'lib/v20210119/models.rb', line 2576 def NotifyUrl @NotifyUrl end |
Instance Method Details
#deserialize(params) ⇒ Object
2584 2585 2586 2587 2588 |
# File 'lib/v20210119/models.rb', line 2584 def deserialize(params) @NotifyUrl = params['NotifyUrl'] @CallbackKey = params['CallbackKey'] @AlarmValue = params['AlarmValue'] end |