Class: TencentCloud::Wedata::V20250806::CreateWorkflowFolderRequest

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

Overview

CreateWorkflowFolder请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of CreateWorkflowFolderRequest.



2331
2332
2333
2334
2335
# File 'lib/v20250806/models.rb', line 2331

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

Instance Attribute Details

#FolderNameObject

Parameters:

  • ProjectId:

    项目ID

  • ParentFolderPath:

    父文件夹绝对路径,如/abc/de,如果是根目录则传/

  • FolderName:

    要创建的文件夹名字



2329
2330
2331
# File 'lib/v20250806/models.rb', line 2329

def FolderName
  @FolderName
end

#ParentFolderPathObject

Parameters:

  • ProjectId:

    项目ID

  • ParentFolderPath:

    父文件夹绝对路径,如/abc/de,如果是根目录则传/

  • FolderName:

    要创建的文件夹名字



2329
2330
2331
# File 'lib/v20250806/models.rb', line 2329

def ParentFolderPath
  @ParentFolderPath
end

#ProjectIdObject

Parameters:

  • ProjectId:

    项目ID

  • ParentFolderPath:

    父文件夹绝对路径,如/abc/de,如果是根目录则传/

  • FolderName:

    要创建的文件夹名字



2329
2330
2331
# File 'lib/v20250806/models.rb', line 2329

def ProjectId
  @ProjectId
end

Instance Method Details

#deserialize(params) ⇒ Object



2337
2338
2339
2340
2341
# File 'lib/v20250806/models.rb', line 2337

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