com.aliyun.linkedmall20230930.models.ProductSpec Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.linkedmall20230930.models;
import com.aliyun.tea.*;
public class ProductSpec extends TeaModel {
@NameInMap("key")
public String key;
@NameInMap("keyId")
public Long keyId;
@NameInMap("values")
public java.util.List values;
public static ProductSpec build(java.util.Map map) throws Exception {
ProductSpec self = new ProductSpec();
return TeaModel.build(map, self);
}
public ProductSpec setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
public ProductSpec setKeyId(Long keyId) {
this.keyId = keyId;
return this;
}
public Long getKeyId() {
return this.keyId;
}
public ProductSpec setValues(java.util.List values) {
this.values = values;
return this;
}
public java.util.List getValues() {
return this.values;
}
}