Class: TencentCloud::Iss::V20230517::UpdateRecordPlanRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::UpdateRecordPlanRequest
- Defined in:
- lib/v20230517/models.rb
Overview
UpdateRecordPlan请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(planid = nil, mod = nil) ⇒ UpdateRecordPlanRequest
constructor
A new instance of UpdateRecordPlanRequest.
Constructor Details
#initialize(planid = nil, mod = nil) ⇒ UpdateRecordPlanRequest
Returns a new instance of UpdateRecordPlanRequest.
7862 7863 7864 7865 |
# File 'lib/v20230517/models.rb', line 7862 def initialize(planid=nil, mod=nil) @PlanId = planid @Mod = mod end |
Instance Attribute Details
#Mod ⇒ Object
7860 7861 7862 |
# File 'lib/v20230517/models.rb', line 7860 def Mod @Mod end |
#PlanId ⇒ Object
7860 7861 7862 |
# File 'lib/v20230517/models.rb', line 7860 def PlanId @PlanId end |
Instance Method Details
#deserialize(params) ⇒ Object
7867 7868 7869 7870 7871 7872 7873 |
# File 'lib/v20230517/models.rb', line 7867 def deserialize(params) @PlanId = params['PlanId'] unless params['Mod'].nil? @Mod = UpdateRecordPlanData.new @Mod.deserialize(params['Mod']) end end |