Class: TencentCloud::Iss::V20230517::UpdateRecordPlanRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20230517/models.rb

Overview

UpdateRecordPlan请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#ModObject

Parameters:

  • PlanId:

    计划ID

  • Mod:

    修改计划的内容



7860
7861
7862
# File 'lib/v20230517/models.rb', line 7860

def Mod
  @Mod
end

#PlanIdObject

Parameters:

  • PlanId:

    计划ID

  • Mod:

    修改计划的内容



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