/* Options: Date: 2026-08-01 08:21:12 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: ContactAuditTrailRequest.* //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/Contact/{ContactId}/audittrail", Verbs="GET,OPTIONS") public static class ContactAuditTrailRequest implements IReturn { public Integer ContactId = null; public Integer getContactId() { return ContactId; } public ContactAuditTrailRequest setContactId(Integer value) { this.ContactId = value; return this; } private static Object responseType = ContactAuditTrailResponse.class; public Object getResponseType() { return responseType; } } public static class ContactAuditTrailResponse { public ResponseStatus ResponseStatus = null; public ArrayList Entries = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public ContactAuditTrailResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getEntries() { return Entries; } public ContactAuditTrailResponse setEntries(ArrayList value) { this.Entries = value; return this; } } public static class ContactAuditEntry { public String Action = null; public String Who = null; public Date At = null; public String getAction() { return Action; } public ContactAuditEntry setAction(String value) { this.Action = value; return this; } public String getWho() { return Who; } public ContactAuditEntry setWho(String value) { this.Who = value; return this; } public Date getAt() { return At; } public ContactAuditEntry setAt(Date value) { this.At = value; return this; } } }