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.



11273
11274
11275
11276
11277
# File 'lib/v20190423/models.rb', line 11273

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

Instance Attribute Details

#ProjectDescObject

Parameters:

  • ProjectId:

    项目ID

  • ProjectName:

    项目名称

  • ProjectDesc:

    项目描述



11271
11272
11273
# File 'lib/v20190423/models.rb', line 11271

def ProjectDesc
  @ProjectDesc
end

#ProjectIdObject

Parameters:

  • ProjectId:

    项目ID

  • ProjectName:

    项目名称

  • ProjectDesc:

    项目描述



11271
11272
11273
# File 'lib/v20190423/models.rb', line 11271

def ProjectId
  @ProjectId
end

#ProjectNameObject

Parameters:

  • ProjectId:

    项目ID

  • ProjectName:

    项目名称

  • ProjectDesc:

    项目描述



11271
11272
11273
# File 'lib/v20190423/models.rb', line 11271

def ProjectName
  @ProjectName
end

Instance Method Details

#deserialize(params) ⇒ Object



11279
11280
11281
11282
11283
# File 'lib/v20190423/models.rb', line 11279

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