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.
13908 13909 13910 13911 13912 |
# File 'lib/v20190612/models.rb', line 13908 def initialize(totalcount=nil, scheduleinfoset=nil, requestid=nil) @TotalCount = totalcount @ScheduleInfoSet = scheduleinfoset @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
13906 13907 13908 |
# File 'lib/v20190612/models.rb', line 13906 def RequestId @RequestId end |
#ScheduleInfoSet ⇒ Object
13906 13907 13908 |
# File 'lib/v20190612/models.rb', line 13906 def ScheduleInfoSet @ScheduleInfoSet end |
#TotalCount ⇒ Object
13906 13907 13908 |
# File 'lib/v20190612/models.rb', line 13906 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 |
# File 'lib/v20190612/models.rb', line 13914 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 |