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

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

There is a newer version: 1.1.18
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, 2017-02-15 13:57:59
 */
public class KbAdvertContentPassword extends AlipayObject {

	private static final long serialVersionUID = 5673147943483787591L;

	/**
	 * 红包口令
	 */
	@ApiField("password")
	private String password;

	/**
	 * 红包口令分享地址
	 */
	@ApiField("share_page_url")
	private String sharePageUrl;

	public String getPassword() {
		return this.password;
	}
	public void setPassword(String password) {
		this.password = password;
	}

	public String getSharePageUrl() {
		return this.sharePageUrl;
	}
	public void setSharePageUrl(String sharePageUrl) {
		this.sharePageUrl = sharePageUrl;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy