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.
39767 39768 39769 39770 39771 39772 |
# File 'lib/v20210820/models.rb', line 39767 def initialize(projectid=nil, name=nil, dimension=nil, description=nil) @ProjectId = projectid @Name = name @Dimension = dimension @Description = description end |
Instance Attribute Details
#Description ⇒ Object
39765 39766 39767 |
# File 'lib/v20210820/models.rb', line 39765 def Description @Description end |
#Dimension ⇒ Object
39765 39766 39767 |
# File 'lib/v20210820/models.rb', line 39765 def Dimension @Dimension end |
#Name ⇒ Object
39765 39766 39767 |
# File 'lib/v20210820/models.rb', line 39765 def Name @Name end |
#ProjectId ⇒ Object
39765 39766 39767 |
# File 'lib/v20210820/models.rb', line 39765 def ProjectId @ProjectId end |
Instance Method Details
#deserialize(params) ⇒ Object
39774 39775 39776 39777 39778 39779 |
# File 'lib/v20210820/models.rb', line 39774 def deserialize(params) @ProjectId = params['ProjectId'] @Name = params['Name'] @Dimension = params['Dimension'] @Description = params['Description'] end |