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

org.tsugi.ags2.objects.SubmissionReview Maven / Gradle / Ivy

There is a newer version: 23.3
Show newest version
package org.tsugi.ags2.objects;

import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.TreeMap;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)

/*  
       "submissionReview": {
            "reviewableStatus": ["InProgress", "Submitted", "Completed"],
            "label": "Open My Tool Viewer",
            "url": "https://platform.example.com/act/849023/sub",
            "custom": {
                    "action": "review",
                    "a_id": "23942"
            }
        }
 */
public class SubmissionReview extends org.tsugi.jackson.objects.JacksonBase {

	@JsonProperty("reviewableStatus")
	public List reviewableStatus = new ArrayList();
	@JsonProperty("label")
	public String label;
	@JsonProperty("resourceId")
	public String resourceId;
	@JsonProperty("url")
	public String url;

    @JsonProperty("custom")
    public Map custom = new TreeMap();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy