Class: TencentCloud::Bh::V20230418::ChangePwdTaskDetail
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bh::V20230418::ChangePwdTaskDetail
- Defined in:
- lib/v20230418/models.rb
Overview
查询改密计划详情
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(device = nil, account = nil, lastchangestatus = nil) ⇒ ChangePwdTaskDetail
constructor
A new instance of ChangePwdTaskDetail.
Constructor Details
#initialize(device = nil, account = nil, lastchangestatus = nil) ⇒ ChangePwdTaskDetail
746 747 748 749 750 |
# File 'lib/v20230418/models.rb', line 746 def initialize(device=nil, account=nil, lastchangestatus=nil) @Device = device @Account = account @LastChangeStatus = lastchangestatus end |
Instance Attribute Details
#Account ⇒ Object
744 745 746 |
# File 'lib/v20230418/models.rb', line 744 def Account @Account end |
#Device ⇒ Object
744 745 746 |
# File 'lib/v20230418/models.rb', line 744 def Device @Device end |
#LastChangeStatus ⇒ Object
744 745 746 |
# File 'lib/v20230418/models.rb', line 744 def LastChangeStatus @LastChangeStatus end |
Instance Method Details
#deserialize(params) ⇒ Object
752 753 754 755 756 757 758 759 |
# File 'lib/v20230418/models.rb', line 752 def deserialize(params) unless params['Device'].nil? @Device = Device.new @Device.deserialize(params['Device']) end @Account = params['Account'] @LastChangeStatus = params['LastChangeStatus'] end |