com.imsweb.naaccr.api.client.ErrorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of naaccr-api-client Show documentation
Show all versions of naaccr-api-client Show documentation
Wraps calls to the NAACCR API.
The newest version!
/*
* Copyright (C) 2023 Information Management Services, Inc.
*/
package com.imsweb.naaccr.api.client;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ErrorResponse {
@JsonProperty("message")
private String _message;
public String getMessage() {
return _message;
}
@SuppressWarnings("unused")
public void setMessage(String message) {
_message = message;
}
}