
com.plenigo.sdk.models.ProductInfo 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;
/**
*
* This object represents the product information retrieved from a paged list.
*
*
* Thread safety: This class is thread safe and can be injected.
*
*/
public class ProductInfo {
private String productId;
private String title;
private String description;
/**
* Required constructor.
*
* @param productId id of the product
* @param title title of the product
* @param description description of the product
*/
public ProductInfo(String productId, String title, String description) {
this.productId = productId;
this.title = title;
this.description = description;
}
/**
* Retrieves the product id.
*
* @return the product id
*/
public String getProductId() {
return productId;
}
/**
* Retrieves the product title.
*
* @return the product title
*/
public String getTitle() {
return title;
}
/**
* Retrieves the product description.
*
* @return the product description
*/
public String getDescription() {
return description;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy