com.smartling.api.sdk.file.response.ApiV2ResponseWrapper Maven / Gradle / Ivy
package com.smartling.api.sdk.file.response;
import com.smartling.web.api.v2.ResponseData;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
public class ApiV2ResponseWrapper
{
private Response response;
/**
* Retrieve the response.
*
* @return the response.
*/
public Response getResponse()
{
return response;
}
@Override
public String toString()
{
return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("response", getResponse()).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy