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

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

There is a newer version: 2.0.0
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, 2017-05-25 11:39:51
 */
public class QueryMenu extends AlipayObject {

	private static final long serialVersionUID = 3548122576675123163L;

	/**
	 * 一级菜单列表
	 */
	@ApiListField("button")
	@ApiField("button_object")
	private List button;

	/**
	 * 标签规则项列表
	 */
	@ApiListField("label_rule")
	@ApiField("query_label_rule")
	private List labelRule;

	/**
	 * 菜单唯一id
	 */
	@ApiField("menu_key")
	private String menuKey;

	/**
	 * 菜单类型,icon:icon型菜单,text:文本型菜单
	 */
	@ApiField("type")
	private String type;

	public List getButton() {
		return this.button;
	}
	public void setButton(List button) {
		this.button = button;
	}

	public List getLabelRule() {
		return this.labelRule;
	}
	public void setLabelRule(List labelRule) {
		this.labelRule = labelRule;
	}

	public String getMenuKey() {
		return this.menuKey;
	}
	public void setMenuKey(String menuKey) {
		this.menuKey = menuKey;
	}

	public String getType() {
		return this.type;
	}
	public void setType(String type) {
		this.type = type;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy