Class: TencentCloud::Ess::V20201111::CreateFlowRemindsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::CreateFlowRemindsResponse
- Defined in:
- lib/v20201111/models.rb
Overview
CreateFlowReminds返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(remindflowrecords = nil, requestid = nil) ⇒ CreateFlowRemindsResponse
constructor
A new instance of CreateFlowRemindsResponse.
Constructor Details
#initialize(remindflowrecords = nil, requestid = nil) ⇒ CreateFlowRemindsResponse
Returns a new instance of CreateFlowRemindsResponse.
4873 4874 4875 4876 |
# File 'lib/v20201111/models.rb', line 4873 def initialize(remindflowrecords=nil, requestid=nil) @RemindFlowRecords = remindflowrecords @RequestId = requestid end |
Instance Attribute Details
#RemindFlowRecords ⇒ Object
4871 4872 4873 |
# File 'lib/v20201111/models.rb', line 4871 def RemindFlowRecords @RemindFlowRecords end |
#RequestId ⇒ Object
4871 4872 4873 |
# File 'lib/v20201111/models.rb', line 4871 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 |
# File 'lib/v20201111/models.rb', line 4878 def deserialize(params) unless params['RemindFlowRecords'].nil? @RemindFlowRecords = [] params['RemindFlowRecords'].each do |i| remindflowrecords_tmp = RemindFlowRecords.new remindflowrecords_tmp.deserialize(i) @RemindFlowRecords << remindflowrecords_tmp end end @RequestId = params['RequestId'] end |