Class: TencentCloud::Wedata::V20210820::TriggerEventRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::TriggerEventRequest
- Defined in:
- lib/v20210820/models.rb
Overview
TriggerEvent请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(projectid = nil, name = nil, dimension = nil, description = nil) ⇒ TriggerEventRequest
constructor
A new instance of TriggerEventRequest.
Constructor Details
#initialize(projectid = nil, name = nil, dimension = nil, description = nil) ⇒ TriggerEventRequest
Returns a new instance of TriggerEventRequest.
41382 41383 41384 41385 41386 41387 |
# File 'lib/v20210820/models.rb', line 41382 def initialize(projectid=nil, name=nil, dimension=nil, description=nil) @ProjectId = projectid @Name = name @Dimension = dimension @Description = description end |
Instance Attribute Details
#Description ⇒ Object
41380 41381 41382 |
# File 'lib/v20210820/models.rb', line 41380 def Description @Description end |
#Dimension ⇒ Object
41380 41381 41382 |
# File 'lib/v20210820/models.rb', line 41380 def Dimension @Dimension end |
#Name ⇒ Object
41380 41381 41382 |
# File 'lib/v20210820/models.rb', line 41380 def Name @Name end |
#ProjectId ⇒ Object
41380 41381 41382 |
# File 'lib/v20210820/models.rb', line 41380 def ProjectId @ProjectId end |
Instance Method Details
#deserialize(params) ⇒ Object
41389 41390 41391 41392 41393 41394 |
# File 'lib/v20210820/models.rb', line 41389 def deserialize(params) @ProjectId = params['ProjectId'] @Name = params['Name'] @Dimension = params['Dimension'] @Description = params['Description'] end |