
com.plenigo.sdk.models.CustomerAppRequest 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 the list of applications of a specific customer.
*
*
* Thread safety: This class is thread safe and can be injected.
*
*/
public class CustomerAppRequest {
private String customerId;
/**
* Constructor with the required fields.
*
* @param customerId customer id
*/
public CustomerAppRequest(String customerId) {
this.customerId = customerId;
}
/**
* Returns the customer id.
*
* @return customer id
*/
public String getCustomerId() {
return customerId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy