com.contrastsecurity.http.JobOutcomePolicyListResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contrast-sdk-java Show documentation
Show all versions of contrast-sdk-java Show documentation
SDK for accessing and using the Contrast TeamServer REST API in Java
package com.contrastsecurity.http;
import com.contrastsecurity.models.JobOutcomePolicy;
import com.google.gson.annotations.SerializedName;
import lombok.Getter;
import java.util.List;
/**
* Wrapper for the response object returned by Contrast
*/
@Getter
public class JobOutcomePolicyListResponse {
/**
* List of job outcome policies
* @return The list of job outcome policies
*/
@SerializedName("policies")
private List policies;
}