All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.MiniContentProperty Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
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:10
 */
public class MiniContentProperty extends AlipayObject {

	private static final long serialVersionUID = 8436641952489313492L;

	/**
	 * 属性key,必须是平台预先定义的,否则不允许录入
	 */
	@ApiField("key")
	private String key;

	/**
	 * 属性状态,VALID:有效,INVALID:无效,MAN_AUDITING:审核中,MAN_AUDIT_REJECT:审核驳回
	 */
	@ApiField("status")
	private String status;

	/**
	 * 属性值
	 */
	@ApiListField("value_list")
	@ApiField("string")
	private List valueList;

	public String getKey() {
		return this.key;
	}
	public void setKey(String key) {
		this.key = key;
	}

	public String getStatus() {
		return this.status;
	}
	public void setStatus(String status) {
		this.status = status;
	}

	public List getValueList() {
		return this.valueList;
	}
	public void setValueList(List valueList) {
		this.valueList = valueList;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy