org.gs4tr.gcc.restclient.request.CheckHistoryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcc-restclient Show documentation
Show all versions of gcc-restclient Show documentation
GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.
package org.gs4tr.gcc.restclient.request;
import java.util.List;
import org.gs4tr.gcc.restclient.model.HistoryItem;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CheckHistoryRequest extends GCMultiConnectorRequest {
@JsonProperty("source_locale")
private String sourceLocale;
@JsonProperty("target_locales")
private List targetLocales;
@JsonProperty("content")
private List items;
public CheckHistoryRequest(String sourceLocale, List targetLocales, List items) {
this.sourceLocale = sourceLocale;
this.targetLocales = targetLocales;
this.items = items;
}
}