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

com.mizhousoft.apple.iap.result.ReceiptBody Maven / Gradle / Ivy

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

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * receipt
 *
 * @version
 */
public class ReceiptBody
{
	@JsonProperty("in_app")
	private List purchaseReceipts;

	@JsonProperty("bundle_id")
	private String bundleId;

	/**
	 * 获取purchaseReceipts
	 * 
	 * @return
	 */
	public List getPurchaseReceipts()
	{
		return purchaseReceipts;
	}

	/**
	 * 设置purchaseReceipts
	 * 
	 * @param purchaseReceipts
	 */
	public void setPurchaseReceipts(List purchaseReceipts)
	{
		this.purchaseReceipts = purchaseReceipts;
	}

	/**
	 * 获取bundleId
	 * 
	 * @return
	 */
	public String getBundleId()
	{
		return bundleId;
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy