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

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

There is a newer version: 1.7.2
Show newest version
package com.plenigo.sdk.models;


/**
 * 

* This class is used for deleting an application id registered to a customer. *

*

* Thread safety: This class is thread safe and can be injected. *

*/ public class DeleteAppIdRequest { private String customerId; private String customerAppId; /** * Constructor with the required fields. * * @param customerId customer id * @param customerAppId customer app id */ public DeleteAppIdRequest(String customerId, String customerAppId) { this.customerId = customerId; this.customerAppId = customerAppId; } /** * Returns the customer id. * * @return customer id */ public String getCustomerId() { return customerId; } /** * Returns the customer app id. * * @return customer app id */ public String getCustomerAppId() { return customerAppId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy