com.spotinst.sdkjava.client.response.BaseServiceItemsResponse Maven / Gradle / Ivy
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 abstract class BaseServiceItemsResponse {
public BaseServiceItemsResponse()
{
}
@JsonProperty
public ItemsInnerResponse getResponse() {
return response;
}
@JsonProperty
public void setResponse(ItemsInnerResponse response) {
this.response = response;
}
@JsonProperty
private ItemsInnerResponse response;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy