Class: TencentCloud::Cls::V20201016::DashboardSubscribeInfo
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::DashboardSubscribeInfo
- Defined in:
- lib/v20201016/models.rb
Overview
仪表盘订阅信息
Instance Attribute Summary collapse
- #CreateTime ⇒ Object
- #Cron ⇒ Object
- #DashboardId ⇒ Object
- #Id ⇒ Object
- #LastStatus ⇒ Object
- #LastTime ⇒ Object
- #Name ⇒ Object
- #SubscribeData ⇒ Object
- #SubUin ⇒ Object
- #Uin ⇒ Object
- #UpdateTime ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(id = nil, name = nil, dashboardid = nil, cron = nil, subscribedata = nil, createtime = nil, updatetime = nil, lasttime = nil, uin = nil, subuin = nil, laststatus = nil) ⇒ DashboardSubscribeInfo
constructor
A new instance of DashboardSubscribeInfo.
Constructor Details
#initialize(id = nil, name = nil, dashboardid = nil, cron = nil, subscribedata = nil, createtime = nil, updatetime = nil, lasttime = nil, uin = nil, subuin = nil, laststatus = nil) ⇒ DashboardSubscribeInfo
Returns a new instance of DashboardSubscribeInfo.
5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 |
# File 'lib/v20201016/models.rb', line 5257 def initialize(id=nil, name=nil, dashboardid=nil, cron=nil, subscribedata=nil, createtime=nil, updatetime=nil, lasttime=nil, uin=nil, subuin=nil, laststatus=nil) @Id = id @Name = name @DashboardId = dashboardid @Cron = cron @SubscribeData = subscribedata @CreateTime = createtime @UpdateTime = updatetime @LastTime = lasttime @Uin = uin @SubUin = subuin @LastStatus = laststatus end |
Instance Attribute Details
#CreateTime ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def CreateTime @CreateTime end |
#Cron ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def Cron @Cron end |
#DashboardId ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def DashboardId @DashboardId end |
#Id ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def Id @Id end |
#LastStatus ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def LastStatus @LastStatus end |
#LastTime ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def LastTime @LastTime end |
#Name ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def Name @Name end |
#SubscribeData ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def SubscribeData @SubscribeData end |
#SubUin ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def SubUin @SubUin end |
#Uin ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def Uin @Uin end |
#UpdateTime ⇒ Object
5255 5256 5257 |
# File 'lib/v20201016/models.rb', line 5255 def UpdateTime @UpdateTime end |
Instance Method Details
#deserialize(params) ⇒ Object
5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 |
# File 'lib/v20201016/models.rb', line 5271 def deserialize(params) @Id = params['Id'] @Name = params['Name'] @DashboardId = params['DashboardId'] @Cron = params['Cron'] unless params['SubscribeData'].nil? @SubscribeData = DashboardSubscribeData.new @SubscribeData.deserialize(params['SubscribeData']) end @CreateTime = params['CreateTime'] @UpdateTime = params['UpdateTime'] @LastTime = params['LastTime'] @Uin = params['Uin'] @SubUin = params['SubUin'] @LastStatus = params['LastStatus'] end |