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

com.imsweb.naaccr.api.client.ErrorResponse Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy