Class: TencentCloud::Iss::V20230517::ListAITasksRequest

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

Overview

ListAITasks请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(iscontainchannellist = nil, iscontaintemplate = nil, pagenumber = nil, pagesize = nil) ⇒ ListAITasksRequest

Returns a new instance of ListAITasksRequest.



4652
4653
4654
4655
4656
4657
# File 'lib/v20230517/models.rb', line 4652

def initialize(iscontainchannellist=nil, iscontaintemplate=nil, pagenumber=nil, pagesize=nil)
  @IsContainChannelList = iscontainchannellist
  @IsContainTemplate = iscontaintemplate
  @PageNumber = pagenumber
  @PageSize = pagesize
end

Instance Attribute Details

#IsContainChannelListObject

Parameters:

  • IsContainChannelList:

    是否包含通道列表。"true"代表包含通道列表,"false"代表不包含通道列表,默认为 false

  • IsContainTemplate:

    是否包含AI配置。"true"代表包含任务配置,"false"代表不包含任务配置,默认为 false。

  • PageNumber:

    页码。默认为1

  • PageSize:

    每页数量。可选值1~200,默认为20



4650
4651
4652
# File 'lib/v20230517/models.rb', line 4650

def IsContainChannelList
  @IsContainChannelList
end

#IsContainTemplateObject

Parameters:

  • IsContainChannelList:

    是否包含通道列表。"true"代表包含通道列表,"false"代表不包含通道列表,默认为 false

  • IsContainTemplate:

    是否包含AI配置。"true"代表包含任务配置,"false"代表不包含任务配置,默认为 false。

  • PageNumber:

    页码。默认为1

  • PageSize:

    每页数量。可选值1~200,默认为20



4650
4651
4652
# File 'lib/v20230517/models.rb', line 4650

def IsContainTemplate
  @IsContainTemplate
end

#PageNumberObject

Parameters:

  • IsContainChannelList:

    是否包含通道列表。"true"代表包含通道列表,"false"代表不包含通道列表,默认为 false

  • IsContainTemplate:

    是否包含AI配置。"true"代表包含任务配置,"false"代表不包含任务配置,默认为 false。

  • PageNumber:

    页码。默认为1

  • PageSize:

    每页数量。可选值1~200,默认为20



4650
4651
4652
# File 'lib/v20230517/models.rb', line 4650

def PageNumber
  @PageNumber
end

#PageSizeObject

Parameters:

  • IsContainChannelList:

    是否包含通道列表。"true"代表包含通道列表,"false"代表不包含通道列表,默认为 false

  • IsContainTemplate:

    是否包含AI配置。"true"代表包含任务配置,"false"代表不包含任务配置,默认为 false。

  • PageNumber:

    页码。默认为1

  • PageSize:

    每页数量。可选值1~200,默认为20



4650
4651
4652
# File 'lib/v20230517/models.rb', line 4650

def PageSize
  @PageSize
end

Instance Method Details

#deserialize(params) ⇒ Object



4659
4660
4661
4662
4663
4664
# File 'lib/v20230517/models.rb', line 4659

def deserialize(params)
  @IsContainChannelList = params['IsContainChannelList']
  @IsContainTemplate = params['IsContainTemplate']
  @PageNumber = params['PageNumber']
  @PageSize = params['PageSize']
end