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

com.plenigo.sdk.models.CategoryInfo Maven / Gradle / Ivy

There is a newer version: 1.7.2
Show newest version
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