com.contrastsecurity.models.TraceNoteResource 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.models;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class TraceNoteResource{
@SerializedName("note")
protected String note;
public String getNote() { return note;};
@SerializedName("creator")
protected String creator;
public String getCreator() { return creator;};
public List getProperties() {
return properties;
}
@SerializedName("properties")
private List properties;
public class NgTraceNoteReadOnlyPropertyResource {
@SerializedName("name")
protected String name;
public String getName() { return name;};
@SerializedName("value")
protected String value;
public String getValue() { return value;};
}
}