Class: TencentCloud::Iss::V20230517::UpdateRecordBackupPlanRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::UpdateRecordBackupPlanRequest
- Defined in:
- lib/v20230517/models.rb
Overview
UpdateRecordBackupPlan请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(planid = nil, mod = nil) ⇒ UpdateRecordBackupPlanRequest
constructor
A new instance of UpdateRecordBackupPlanRequest.
Constructor Details
#initialize(planid = nil, mod = nil) ⇒ UpdateRecordBackupPlanRequest
Returns a new instance of UpdateRecordBackupPlanRequest.
7616 7617 7618 7619 |
# File 'lib/v20230517/models.rb', line 7616 def initialize(planid=nil, mod=nil) @PlanId = planid @Mod = mod end |
Instance Attribute Details
#Mod ⇒ Object
7614 7615 7616 |
# File 'lib/v20230517/models.rb', line 7614 def Mod @Mod end |
#PlanId ⇒ Object
7614 7615 7616 |
# File 'lib/v20230517/models.rb', line 7614 def PlanId @PlanId end |
Instance Method Details
#deserialize(params) ⇒ Object
7621 7622 7623 7624 7625 7626 7627 |
# File 'lib/v20230517/models.rb', line 7621 def deserialize(params) @PlanId = params['PlanId'] unless params['Mod'].nil? @Mod = UpdateRecordBackupPlanModify.new @Mod.deserialize(params['Mod']) end end |