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

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

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