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

com.mizhousoft.apple.iap.response.ServerNotificationResponse Maven / Gradle / Ivy

The newest version!
package com.mizhousoft.apple.iap.response;

/**
 * 通知
 *
 */
public class ServerNotificationResponse
{
	/**
	 * 签名内容
	 */
	private String signedPayload;

	/**
	 * 获取signedPayload
	 * 
	 * @return
	 */
	public String getSignedPayload()
	{
		return signedPayload;
	}

	/**
	 * 设置signedPayload
	 * 
	 * @param signedPayload
	 */
	public void setSignedPayload(String signedPayload)
	{
		this.signedPayload = signedPayload;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy