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

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

There is a newer version: 2.0.0
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 商户增加的自定义菜单内容
 *
 * @author auto create
 * @since 1.0, 2016-09-23 09:25:03
 */
public class PrizeCustomMenu extends AlipayObject {

	private static final long serialVersionUID = 5571614113873768424L;

	/**
	 * 菜单详情
	 */
	@ApiField("text")
	private String text;

	/**
	 * 菜单名称
	 */
	@ApiField("title")
	private String title;

	public String getText() {
		return this.text;
	}
	public void setText(String text) {
		this.text = text;
	}

	public String getTitle() {
		return this.title;
	}
	public void setTitle(String title) {
		this.title = title;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy