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

fm.pattern.tokamak.sdk.OAuthBadCredentialsError Maven / Gradle / Ivy

The newest version!
package fm.pattern.tokamak.sdk;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class OAuthBadCredentialsError {

	private String error;
	private String message;

	public OAuthBadCredentialsError() {

	}

	public String getError() {
		return error;
	}

	public void setError(String error) {
		this.error = error;
	}

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy