
com.alipay.api.domain.MiniContentPropertyInfo 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-12-15 19:38:16
*/
public class MiniContentPropertyInfo extends AlipayObject {
private static final long serialVersionUID = 6873785671499589972L;
/**
* 属性key,必须是平台预先定义的,否则不允许录入
*/
@ApiField("key")
private String key;
/**
* 属性值
*/
@ApiListField("value_list")
@ApiField("string")
private List valueList;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public List getValueList() {
return this.valueList;
}
public void setValueList(List valueList) {
this.valueList = valueList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy