/* Options: Date: 2026-08-01 03:07:07 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: ProjectLocationAccessLogRequest.* //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/projectlocation/{ProjectLocationID}/accesslog", Verbs="GET,OPTIONS") public static class ProjectLocationAccessLogRequest implements IReturn { public Integer ProjectLocationID = null; public Integer getProjectLocationID() { return ProjectLocationID; } public ProjectLocationAccessLogRequest setProjectLocationID(Integer value) { this.ProjectLocationID = value; return this; } private static Object responseType = ProjectLocationAccessLogResponse.class; public Object getResponseType() { return responseType; } } public static class ProjectLocationAccessLogResponse { public ResponseStatus ResponseStatus = null; public ArrayList Views = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public ProjectLocationAccessLogResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getViews() { return Views; } public ProjectLocationAccessLogResponse setViews(ArrayList value) { this.Views = value; return this; } } public static class SiteAccessEntry { public Integer SiteAccessAuditID = null; public Integer ProjectLocationID = null; public String ViewedBy = null; public String ViewedByName = null; public Date ViewedAt = null; public Integer getSiteAccessAuditID() { return SiteAccessAuditID; } public SiteAccessEntry setSiteAccessAuditID(Integer value) { this.SiteAccessAuditID = value; return this; } public Integer getProjectLocationID() { return ProjectLocationID; } public SiteAccessEntry setProjectLocationID(Integer value) { this.ProjectLocationID = value; return this; } public String getViewedBy() { return ViewedBy; } public SiteAccessEntry setViewedBy(String value) { this.ViewedBy = value; return this; } public String getViewedByName() { return ViewedByName; } public SiteAccessEntry setViewedByName(String value) { this.ViewedByName = value; return this; } public Date getViewedAt() { return ViewedAt; } public SiteAccessEntry setViewedAt(Date value) { this.ViewedAt = value; return this; } } }