com.alipay.api.domain.QueryMenu Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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, 2020-08-10 20:27:34
*/
public class QueryMenu extends AlipayObject {
private static final long serialVersionUID = 3727765784129197989L;
/**
* 一级菜单列表
*/
@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;
}
}