
com.plenigo.sdk.models.ProductAccessRequest 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 product access verification of a product.
*
*
* Thread safety: This class is thread safe and can be injected.
*
*/
public class ProductAccessRequest {
private String customerId;
private String productId;
private String customerAppId;
/**
* Constructor with the required fields.
*
* @param customerId customer id
* @param productId product id
* @param customerAppId customer app id
*/
public ProductAccessRequest(String customerId, String productId, String customerAppId) {
this.customerId = customerId;
this.productId = productId;
this.customerAppId = customerAppId;
}
/**
* 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 customer app id.
*
* @return customer app id
*/
public String getCustomerAppId() {
return customerAppId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy