com.alipay.api.domain.SpuAttribute Maven / Gradle / Ivy
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 商品属性对象
*
* @author auto create
* @since 1.0, 2022-05-18 16:09:36
*/
public class SpuAttribute extends AlipayObject {
private static final long serialVersionUID = 3285223866443827377L;
/**
* 商品属性名
*/
@ApiField("name")
private String name;
/**
* 商品属性值
*/
@ApiListField("value")
@ApiField("string")
private List value;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public List getValue() {
return this.value;
}
public void setValue(List value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy