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

com.spotinst.sdkjava.client.response.ErrorsInnerResponse 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;
import com.spotinst.sdkjava.exception.HttpError;

import java.util.List;

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

    }

    @JsonProperty
    private List errors;

    public List getErrors() {
        return errors;
    }

    public void setErrors(List errors) {
        this.errors = errors;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy