Class: TencentCloud::Cls::V20201016::DescribeDashboardSubscribesResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::DescribeDashboardSubscribesResponse
- Defined in:
- lib/v20201016/models.rb
Overview
DescribeDashboardSubscribes返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(dashboardsubscribeinfos = nil, totalcount = nil, requestid = nil) ⇒ DescribeDashboardSubscribesResponse
constructor
A new instance of DescribeDashboardSubscribesResponse.
Constructor Details
#initialize(dashboardsubscribeinfos = nil, totalcount = nil, requestid = nil) ⇒ DescribeDashboardSubscribesResponse
Returns a new instance of DescribeDashboardSubscribesResponse.
7849 7850 7851 7852 7853 |
# File 'lib/v20201016/models.rb', line 7849 def initialize(dashboardsubscribeinfos=nil, totalcount=nil, requestid=nil) @DashboardSubscribeInfos = dashboardsubscribeinfos @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#DashboardSubscribeInfos ⇒ Object
7847 7848 7849 |
# File 'lib/v20201016/models.rb', line 7847 def DashboardSubscribeInfos @DashboardSubscribeInfos end |
#RequestId ⇒ Object
7847 7848 7849 |
# File 'lib/v20201016/models.rb', line 7847 def RequestId @RequestId end |
#TotalCount ⇒ Object
7847 7848 7849 |
# File 'lib/v20201016/models.rb', line 7847 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 |
# File 'lib/v20201016/models.rb', line 7855 def deserialize(params) unless params['DashboardSubscribeInfos'].nil? @DashboardSubscribeInfos = [] params['DashboardSubscribeInfos'].each do |i| dashboardsubscribeinfo_tmp = DashboardSubscribeInfo.new dashboardsubscribeinfo_tmp.deserialize(i) @DashboardSubscribeInfos << dashboardsubscribeinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |