/* Options: Date: 2025-12-07 01:01:50 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sfgtec.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TrackingLog.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/trackinglog", Verbs="POST") public static class TrackingLog { public Long tenantsId = null; public Long appUserId = null; public Long mediaId = null; public Long mediaPercentage = null; public Integer score = null; public String menuItems = null; public String entities = null; public String ipAddress = null; public String country = null; public Date accessDateTime = null; public Long getTenantsId() { return tenantsId; } public TrackingLog setTenantsId(Long value) { this.tenantsId = value; return this; } public Long getAppUserId() { return appUserId; } public TrackingLog setAppUserId(Long value) { this.appUserId = value; return this; } public Long getMediaId() { return mediaId; } public TrackingLog setMediaId(Long value) { this.mediaId = value; return this; } public Long getMediaPercentage() { return mediaPercentage; } public TrackingLog setMediaPercentage(Long value) { this.mediaPercentage = value; return this; } public Integer getScore() { return score; } public TrackingLog setScore(Integer value) { this.score = value; return this; } public String getMenuItems() { return menuItems; } public TrackingLog setMenuItems(String value) { this.menuItems = value; return this; } public String getEntities() { return entities; } public TrackingLog setEntities(String value) { this.entities = value; return this; } public String getIpAddress() { return ipAddress; } public TrackingLog setIpAddress(String value) { this.ipAddress = value; return this; } public String getCountry() { return country; } public TrackingLog setCountry(String value) { this.country = value; return this; } public Date getAccessDateTime() { return accessDateTime; } public TrackingLog setAccessDateTime(Date value) { this.accessDateTime = value; return this; } } }