Class: TencentCloud::Lke::V20231130::CreateQACateRequest

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

Overview

CreateQACate请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(botbizid = nil, parentbizid = nil, name = nil) ⇒ CreateQACateRequest

Returns a new instance of CreateQACateRequest.



2370
2371
2372
2373
2374
# File 'lib/v20231130/models.rb', line 2370

def initialize(botbizid=nil, parentbizid=nil, name=nil)
  @BotBizId = botbizid
  @ParentBizId = parentbizid
  @Name = name
end

Instance Attribute Details

#BotBizIdObject

Parameters:

  • BotBizId:

    应用ID

  • ParentBizId:

    父级业务ID,创建顶级分类时传字符串“0”

  • Name:

    分类名称



2368
2369
2370
# File 'lib/v20231130/models.rb', line 2368

def BotBizId
  @BotBizId
end

#NameObject

Parameters:

  • BotBizId:

    应用ID

  • ParentBizId:

    父级业务ID,创建顶级分类时传字符串“0”

  • Name:

    分类名称



2368
2369
2370
# File 'lib/v20231130/models.rb', line 2368

def Name
  @Name
end

#ParentBizIdObject

Parameters:

  • BotBizId:

    应用ID

  • ParentBizId:

    父级业务ID,创建顶级分类时传字符串“0”

  • Name:

    分类名称



2368
2369
2370
# File 'lib/v20231130/models.rb', line 2368

def ParentBizId
  @ParentBizId
end

Instance Method Details

#deserialize(params) ⇒ Object



2376
2377
2378
2379
2380
# File 'lib/v20231130/models.rb', line 2376

def deserialize(params)
  @BotBizId = params['BotBizId']
  @ParentBizId = params['ParentBizId']
  @Name = params['Name']
end