/* Options: Date: 2026-08-11 12:31:45 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EngineAuditRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/engine/audit", Verbs="GET,OPTIONS") public static class EngineAuditRequest implements IReturn { private static Object responseType = EngineAuditResponse.class; public Object getResponseType() { return responseType; } } public static class EngineAuditResponse { public ArrayList Entries = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getEntries() { return Entries; } public EngineAuditResponse setEntries(ArrayList value) { this.Entries = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EngineAuditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class WorkflowAuditView { public Date At = null; public String RunKey = null; public Integer WorkflowId = null; public String WorkflowName = null; public String Actor = null; public String Action = null; public String ObjectLabel = null; public String BeforeValue = null; public String AfterValue = null; public Date getAt() { return At; } public WorkflowAuditView setAt(Date value) { this.At = value; return this; } public String getRunKey() { return RunKey; } public WorkflowAuditView setRunKey(String value) { this.RunKey = value; return this; } public Integer getWorkflowId() { return WorkflowId; } public WorkflowAuditView setWorkflowId(Integer value) { this.WorkflowId = value; return this; } public String getWorkflowName() { return WorkflowName; } public WorkflowAuditView setWorkflowName(String value) { this.WorkflowName = value; return this; } public String getActor() { return Actor; } public WorkflowAuditView setActor(String value) { this.Actor = value; return this; } public String getAction() { return Action; } public WorkflowAuditView setAction(String value) { this.Action = value; return this; } public String getObjectLabel() { return ObjectLabel; } public WorkflowAuditView setObjectLabel(String value) { this.ObjectLabel = value; return this; } public String getBeforeValue() { return BeforeValue; } public WorkflowAuditView setBeforeValue(String value) { this.BeforeValue = value; return this; } public String getAfterValue() { return AfterValue; } public WorkflowAuditView setAfterValue(String value) { this.AfterValue = value; return this; } } }