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

com.spotinst.sdkjava.client.response.ServiceErrorsResponse Maven / Gradle / Ivy

There is a newer version: 1.0.121
Show newest version
package com.spotinst.sdkjava.client.response;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Created by aharontwizer on 7/18/15.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class ServiceErrorsResponse {

    public ServiceErrorsResponse()
    {

    }

    @JsonProperty
    private ErrorsInnerResponse response;

    public ErrorsInnerResponse getResponse() {
        return response;
    }

    public void setResponse(ErrorsInnerResponse response) {
        this.response = response;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy