Class: TencentCloud::Mps::V20190612::ModifyStreamLinkEventRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::ModifyStreamLinkEventRequest
- Defined in:
- lib/v20190612/models.rb
Overview
ModifyStreamLinkEvent请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(eventid = nil, eventname = nil, description = nil) ⇒ ModifyStreamLinkEventRequest
constructor
A new instance of ModifyStreamLinkEventRequest.
Constructor Details
#initialize(eventid = nil, eventname = nil, description = nil) ⇒ ModifyStreamLinkEventRequest
Returns a new instance of ModifyStreamLinkEventRequest.
23201 23202 23203 23204 23205 |
# File 'lib/v20190612/models.rb', line 23201 def initialize(eventid=nil, eventname=nil, description=nil) @EventId = eventid @EventName = eventname @Description = description end |
Instance Attribute Details
#Description ⇒ Object
23199 23200 23201 |
# File 'lib/v20190612/models.rb', line 23199 def Description @Description end |
#EventId ⇒ Object
23199 23200 23201 |
# File 'lib/v20190612/models.rb', line 23199 def EventId @EventId end |
#EventName ⇒ Object
23199 23200 23201 |
# File 'lib/v20190612/models.rb', line 23199 def EventName @EventName end |
Instance Method Details
#deserialize(params) ⇒ Object
23207 23208 23209 23210 23211 |
# File 'lib/v20190612/models.rb', line 23207 def deserialize(params) @EventId = params['EventId'] @EventName = params['EventName'] @Description = params['Description'] end |