/* Options: Date: 2026-08-01 06:24: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: EmailOAuthSyncInboundRequest.* //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/emailoauth/sync-inbound", Verbs="POST,OPTIONS") public static class EmailOAuthSyncInboundRequest implements IReturn { public Integer Days = null; public Integer getDays() { return Days; } public EmailOAuthSyncInboundRequest setDays(Integer value) { this.Days = value; return this; } private static Object responseType = EmailOAuthSyncResponse.class; public Object getResponseType() { return responseType; } } public static class EmailOAuthSyncResponse { public Integer Fetched = null; public Integer Threaded = null; public Integer Unmatched = null; public ResponseStatus ResponseStatus = null; public Integer getFetched() { return Fetched; } public EmailOAuthSyncResponse setFetched(Integer value) { this.Fetched = value; return this; } public Integer getThreaded() { return Threaded; } public EmailOAuthSyncResponse setThreaded(Integer value) { this.Threaded = value; return this; } public Integer getUnmatched() { return Unmatched; } public EmailOAuthSyncResponse setUnmatched(Integer value) { this.Unmatched = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EmailOAuthSyncResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }