Class: TencentCloud::Wedata::V20250806::DeleteCodeFolderRequest

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

Overview

DeleteCodeFolder请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(projectid = nil, folderid = nil) ⇒ DeleteCodeFolderRequest

Returns a new instance of DeleteCodeFolderRequest.



3024
3025
3026
3027
# File 'lib/v20250806/models.rb', line 3024

def initialize(projectid=nil, folderid=nil)
  @ProjectId = projectid
  @FolderId = folderid
end

Instance Attribute Details

#FolderIdObject

Parameters:

  • ProjectId:

    项目ID

  • FolderId:

    文件夹ID,参数值来自CreateCodeFolder接口的返回



3022
3023
3024
# File 'lib/v20250806/models.rb', line 3022

def FolderId
  @FolderId
end

#ProjectIdObject

Parameters:

  • ProjectId:

    项目ID

  • FolderId:

    文件夹ID,参数值来自CreateCodeFolder接口的返回



3022
3023
3024
# File 'lib/v20250806/models.rb', line 3022

def ProjectId
  @ProjectId
end

Instance Method Details

#deserialize(params) ⇒ Object



3029
3030
3031
3032
# File 'lib/v20250806/models.rb', line 3029

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