com.fonedynamics.ResponseStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fonedynamics-apiclient Show documentation
Show all versions of fonedynamics-apiclient Show documentation
JDK 1.7 client library for Fone Dynamics services.
package com.fonedynamics;
/**
The ResponseStatus object.
*/
public class ResponseStatus
{
// The error code associated with the response status.
private String ErrorCode;
/**
Get the error code associated with the response status.
* @return The error code associated with the response status.
*/
public final String getErrorCode()
{
return ErrorCode;
}
final void setErrorCode(String value)
{
ErrorCode = value;
}
// The message associated with the error code.
private String Message;
/**
Get the message associated with the error code.
* @return The message associated with the error code.
*/
public final String getMessage()
{
return Message;
}
final void setMessage(String value)
{
Message = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy