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

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

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