/* Options: Date: 2026-06-22 20:28:30 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: QboLogRequest.* //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/qbo/log", Verbs="GET,OPTIONS") public static class QboLogRequest implements IReturn { private static Object responseType = QboLogResponse.class; public Object getResponseType() { return responseType; } } public static class QboLogResponse { public ArrayList Entries = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getEntries() { return Entries; } public QboLogResponse setEntries(ArrayList value) { this.Entries = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public QboLogResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class QboSyncLogEntry { public String EntityType = null; public String LocalId = null; public String Action = null; public String Outcome = null; public String Detail = null; public String QboId = null; public Date CreatedAt = null; public String CreatedBy = null; public String getEntityType() { return EntityType; } public QboSyncLogEntry setEntityType(String value) { this.EntityType = value; return this; } public String getLocalId() { return LocalId; } public QboSyncLogEntry setLocalId(String value) { this.LocalId = value; return this; } public String getAction() { return Action; } public QboSyncLogEntry setAction(String value) { this.Action = value; return this; } public String getOutcome() { return Outcome; } public QboSyncLogEntry setOutcome(String value) { this.Outcome = value; return this; } public String getDetail() { return Detail; } public QboSyncLogEntry setDetail(String value) { this.Detail = value; return this; } public String getQboId() { return QboId; } public QboSyncLogEntry setQboId(String value) { this.QboId = value; return this; } public Date getCreatedAt() { return CreatedAt; } public QboSyncLogEntry setCreatedAt(Date value) { this.CreatedAt = value; return this; } public String getCreatedBy() { return CreatedBy; } public QboSyncLogEntry setCreatedBy(String value) { this.CreatedBy = value; return this; } } }