// This file is auto-generated, don't edit it. Thanks. package com.alipay.easysdk.marketing.openlife.models; import com.aliyun.tea.*; public class Keyword extends TeaModel { @NameInMap("color") @Validation(required = true) public String color; @NameInMap("value") @Validation(required = true) public String value; public static Keyword build(java.util.Map map) throws Exception { Keyword self = new Keyword(); return TeaModel.build(map, self); } }