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

com.alipay.api.domain.NewsfeedLabelInfo 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-10-26 17:43:38
 */
public class NewsfeedLabelInfo extends AlipayObject {

	private static final long serialVersionUID = 7723249692923119143L;

	/**
	 * 根据主谓宾的格式生成动态的标题,此字段为谓语
	 */
	@ApiField("action")
	private String action;

	/**
	 * label行的跳转链接
	 */
	@ApiField("scheme")
	private String scheme;

	/**
	 * 根据主谓宾的格式生成动态的标题,此字段为宾语
	 */
	@ApiField("target")
	private String target;

	public String getAction() {
		return this.action;
	}
	public void setAction(String action) {
		this.action = action;
	}

	public String getScheme() {
		return this.scheme;
	}
	public void setScheme(String scheme) {
		this.scheme = scheme;
	}

	public String getTarget() {
		return this.target;
	}
	public void setTarget(String target) {
		this.target = target;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy