Class: TencentCloud::Wedata::V20250806::CreateCodeFolderRequest

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

Overview

CreateCodeFolder请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(projectid = nil, foldername = nil, parentfolderpath = nil) ⇒ CreateCodeFolderRequest

Returns a new instance of CreateCodeFolderRequest.



766
767
768
769
770
# File 'lib/v20250806/models.rb', line 766

def initialize(projectid=nil, foldername=nil, parentfolderpath=nil)
  @ProjectId = projectid
  @FolderName = foldername
  @ParentFolderPath = parentfolderpath
end

Instance Attribute Details

#FolderNameObject

Parameters:

  • ProjectId:

    项目ID

  • FolderName:

    文件夹名称

  • ParentFolderPath:

    父文件夹path,例如/aaa/bbb/ccc,路径头需带斜杠,根目录传/



764
765
766
# File 'lib/v20250806/models.rb', line 764

def FolderName
  @FolderName
end

#ParentFolderPathObject

Parameters:

  • ProjectId:

    项目ID

  • FolderName:

    文件夹名称

  • ParentFolderPath:

    父文件夹path,例如/aaa/bbb/ccc,路径头需带斜杠,根目录传/



764
765
766
# File 'lib/v20250806/models.rb', line 764

def ParentFolderPath
  @ParentFolderPath
end

#ProjectIdObject

Parameters:

  • ProjectId:

    项目ID

  • FolderName:

    文件夹名称

  • ParentFolderPath:

    父文件夹path,例如/aaa/bbb/ccc,路径头需带斜杠,根目录传/



764
765
766
# File 'lib/v20250806/models.rb', line 764

def ProjectId
  @ProjectId
end

Instance Method Details

#deserialize(params) ⇒ Object



772
773
774
775
776
# File 'lib/v20250806/models.rb', line 772

def deserialize(params)
  @ProjectId = params['ProjectId']
  @FolderName = params['FolderName']
  @ParentFolderPath = params['ParentFolderPath']
end