org.gs4tr.gcc.restclient.request.UpdateSubmissionAttributeRequest 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.Map;
public class UpdateSubmissionAttributeRequest extends SubmissionRequest {
private Map attributes;
public UpdateSubmissionAttributeRequest(Long submissionId, Map attributes) {
super(submissionId);
this.attributes = attributes;
}
public Map getAttributes() {
return attributes;
}
public void setAttributes(Map attributes) {
this.attributes = attributes;
}
}