Class: TencentCloud::Essbasic::V20210526::ChannelCreateFlowRemindsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ChannelCreateFlowRemindsResponse
- Defined in:
- lib/v20210526/models.rb
Overview
ChannelCreateFlowReminds返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(remindflowrecords = nil, requestid = nil) ⇒ ChannelCreateFlowRemindsResponse
constructor
A new instance of ChannelCreateFlowRemindsResponse.
Constructor Details
#initialize(remindflowrecords = nil, requestid = nil) ⇒ ChannelCreateFlowRemindsResponse
Returns a new instance of ChannelCreateFlowRemindsResponse.
2265 2266 2267 2268 |
# File 'lib/v20210526/models.rb', line 2265 def initialize(remindflowrecords=nil, requestid=nil) @RemindFlowRecords = remindflowrecords @RequestId = requestid end |
Instance Attribute Details
#RemindFlowRecords ⇒ Object
2263 2264 2265 |
# File 'lib/v20210526/models.rb', line 2263 def RemindFlowRecords @RemindFlowRecords end |
#RequestId ⇒ Object
2263 2264 2265 |
# File 'lib/v20210526/models.rb', line 2263 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 |
# File 'lib/v20210526/models.rb', line 2270 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 |