Class: TencentCloud::Iotexplorer::V20190423::ModifyProjectRequest

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

Overview

ModifyProject请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(projectid = nil, projectname = nil, projectdesc = nil) ⇒ ModifyProjectRequest

Returns a new instance of ModifyProjectRequest.



11257
11258
11259
11260
11261
# File 'lib/v20190423/models.rb', line 11257

def initialize(projectid=nil, projectname=nil, projectdesc=nil)
  @ProjectId = projectid
  @ProjectName = projectname
  @ProjectDesc = projectdesc
end

Instance Attribute Details

#ProjectDescObject

Parameters:

  • ProjectId:

    项目ID

  • ProjectName:

    项目名称

  • ProjectDesc:

    项目描述



11255
11256
11257
# File 'lib/v20190423/models.rb', line 11255

def ProjectDesc
  @ProjectDesc
end

#ProjectIdObject

Parameters:

  • ProjectId:

    项目ID

  • ProjectName:

    项目名称

  • ProjectDesc:

    项目描述



11255
11256
11257
# File 'lib/v20190423/models.rb', line 11255

def ProjectId
  @ProjectId
end

#ProjectNameObject

Parameters:

  • ProjectId:

    项目ID

  • ProjectName:

    项目名称

  • ProjectDesc:

    项目描述



11255
11256
11257
# File 'lib/v20190423/models.rb', line 11255

def ProjectName
  @ProjectName
end

Instance Method Details

#deserialize(params) ⇒ Object



11263
11264
11265
11266
11267
# File 'lib/v20190423/models.rb', line 11263

def deserialize(params)
  @ProjectId = params['ProjectId']
  @ProjectName = params['ProjectName']
  @ProjectDesc = params['ProjectDesc']
end