
com.plenigo.sdk.models.MobileSecretInfo 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 object represents the mobile secret info returned due to a request.
*
*
* Thread safety: This class is thread safe and can be injected.
*
*/
public class MobileSecretInfo {
private String email;
private String mobileAppSecret;
/**
* Required constructor.
*
* @param email email address
* @param mobileAppSecret mobile app secret
*/
public MobileSecretInfo(String email, String mobileAppSecret) {
this.email = email;
this.mobileAppSecret = mobileAppSecret;
}
/**
* Returns the email address.
*
* @return email address
*/
public String getEmail() {
return email;
}
/**
* Returns the mobile app secret.
*
* @return mobile app secret
*/
public String getMobileAppSecret() {
return mobileAppSecret;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy