
com.plenigo.sdk.models.CategoryInfo 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 category information retrieved from a paged list.
*
*
* Thread safety: This class is thread safe and can be injected.
*
*/
public class CategoryInfo {
private String categoryId;
private String title;
/**
* Required constructor.
*
* @param categoryId The id of the category
* @param title the title of the category
*/
public CategoryInfo(String categoryId, String title) {
this.categoryId = categoryId;
this.title = title;
}
/**
* Retrieves the category id.
*
* @return The category id
*/
public String getCategoryId() {
return categoryId;
}
/**
* Retrieves the title id.
*
* @return The title id
*/
public String getTitle() {
return title;
}
@Override
public String toString() {
return "CategoryInfo{" + "categoryId='" + categoryId + '\'' + ", title='" + title + '\'' + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy