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

io.callstats.sdk.messages.AuthenticateResponseError Maven / Gradle / Ivy

package io.callstats.sdk.messages;

import java.util.ArrayList;
import java.util.Collection;

import com.google.gson.annotations.SerializedName;

public class AuthenticateResponseError {
	/**
	 * Error code
	 */
	@SerializedName("error")
	private String error;
	
	/**
	 * Error description
	 */
	@SerializedName("error_description")
	private String errorDescription;
	
	/**
	 * Error actions
	 */
	@SerializedName("urn:x-callstats:auth:errorActions")
	private Collection errorActions;
	
	public String getError() {
		return error;
	}
	public void setError(String error) {
		this.error = error;
	}
	public String getErrorDescription() {
		return errorDescription;
	}
	public void setErrorDescription(String errorDescription) {
		this.errorDescription = errorDescription;
	}
	public Collection getErrorActions() {
		return errorActions;
	}
	public void setErrorActions(ArrayList errorActions) {
		this.errorActions = errorActions;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy