class TencentCloud::Lkeap::V20240522::ModifyAttributeLabelRequest
ModifyAttributeLabel请求参数结构体
def deserialize(params)
def deserialize(params) @KnowledgeBaseId = params['KnowledgeBaseId'] @AttributeId = params['AttributeId'] @AttributeKey = params['AttributeKey'] @AttributeName = params['AttributeName'] unless params['Labels'].nil? @Labels = [] params['Labels'].each do |i| attributelabelitem_tmp = AttributeLabelItem.new attributelabelitem_tmp.deserialize(i) @Labels << attributelabelitem_tmp end end end
def initialize(knowledgebaseid=nil, attributeid=nil, attributekey=nil, attributename=nil, labels=nil)
def initialize(knowledgebaseid=nil, attributeid=nil, attributekey=nil, attributename=nil, labels=nil) @KnowledgeBaseId = knowledgebaseid @AttributeId = attributeid @AttributeKey = attributekey @AttributeName = attributename @Labels = labels end