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.



1650
1651
1652
1653
1654
# File 'lib/v20250806/models.rb', line 1650

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:

    要创建的文件夹名字



1648
1649
1650
# File 'lib/v20250806/models.rb', line 1648

def FolderName
  @FolderName
end

#ParentFolderPathObject

Parameters:

  • ProjectId:

    项目ID

  • ParentFolderPath:

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

  • FolderName:

    要创建的文件夹名字



1648
1649
1650
# File 'lib/v20250806/models.rb', line 1648

def ParentFolderPath
  @ParentFolderPath
end

#ProjectIdObject

Parameters:

  • ProjectId:

    项目ID

  • ParentFolderPath:

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

  • FolderName:

    要创建的文件夹名字



1648
1649
1650
# File 'lib/v20250806/models.rb', line 1648

def ProjectId
  @ProjectId
end

Instance Method Details

#deserialize(params) ⇒ Object



1656
1657
1658
1659
1660
# File 'lib/v20250806/models.rb', line 1656

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