
com.plenigo.sdk.models.AppTokenRequest 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 class is used for requesting an app token for customer app management purposes.
*
*
* Thread safety: This class is thread safe and can be injected.
*
*/
public class AppTokenRequest {
private String customerId;
private String productId;
private String description;
/**
* Constructor with the required fields.
*
* @param customerId customer id
* @param productId product id
* @param description description
*/
public AppTokenRequest(String customerId, String productId, String description) {
this.customerId = customerId;
this.productId = productId;
this.description = description;
}
/**
* Returns the customer id.
*
* @return customer id
*/
public String getCustomerId() {
return customerId;
}
/**
* Returns the product id.
*
* @return product id
*/
public String getProductId() {
return productId;
}
/**
* Returns the description.
*
* @return description object
*/
public String getDescription() {
return description;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy