Class: TencentCloud::Mps::V20190612::DescribeSchedulesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::DescribeSchedulesResponse
- Defined in:
- lib/v20190612/models.rb
Overview
DescribeSchedules返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, scheduleinfoset = nil, requestid = nil) ⇒ DescribeSchedulesResponse
constructor
A new instance of DescribeSchedulesResponse.
Constructor Details
#initialize(totalcount = nil, scheduleinfoset = nil, requestid = nil) ⇒ DescribeSchedulesResponse
Returns a new instance of DescribeSchedulesResponse.
12054 12055 12056 12057 12058 |
# File 'lib/v20190612/models.rb', line 12054 def initialize(totalcount=nil, scheduleinfoset=nil, requestid=nil) @TotalCount = totalcount @ScheduleInfoSet = scheduleinfoset @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
12052 12053 12054 |
# File 'lib/v20190612/models.rb', line 12052 def RequestId @RequestId end |
#ScheduleInfoSet ⇒ Object
12052 12053 12054 |
# File 'lib/v20190612/models.rb', line 12052 def ScheduleInfoSet @ScheduleInfoSet end |
#TotalCount ⇒ Object
12052 12053 12054 |
# File 'lib/v20190612/models.rb', line 12052 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 |
# File 'lib/v20190612/models.rb', line 12060 def deserialize(params) @TotalCount = params['TotalCount'] unless params['ScheduleInfoSet'].nil? @ScheduleInfoSet = [] params['ScheduleInfoSet'].each do |i| schedulesinfo_tmp = SchedulesInfo.new schedulesinfo_tmp.deserialize(i) @ScheduleInfoSet << schedulesinfo_tmp end end @RequestId = params['RequestId'] end |