
com.plenigo.sdk.models.SinglePaymentProduct Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK wrapping plenigo REST-API for easier usage.
package com.plenigo.sdk.models;
import com.plenigo.sdk.internal.models.BaseProduct;
import java.util.Date;
/**
*
* Represents a single payment product.
*
*
* Thread safety: This class is thread safe and can be injected.
*
*/
public class SinglePaymentProduct extends BaseProduct {
/**
* Required constructor.
*
* @param productId the id
* @param title the title
* @param buyDate the date the product was bought
*/
public SinglePaymentProduct(String productId, String title, Date buyDate) {
super(productId, title, buyDate);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy