/* Options: Date: 2026-08-11 12:31:43 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: EnginePumpRequest.* //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/engine/pump", Verbs="POST,OPTIONS") public static class EnginePumpRequest implements IReturn { public String Key = null; public Integer MaxItems = null; public String getKey() { return Key; } public EnginePumpRequest setKey(String value) { this.Key = value; return this; } public Integer getMaxItems() { return MaxItems; } public EnginePumpRequest setMaxItems(Integer value) { this.MaxItems = value; return this; } private static Object responseType = EnginePumpResponse.class; public Object getResponseType() { return responseType; } } public static class EnginePumpResponse { public Integer EventsMatched = null; public Integer RunsExecuted = null; public ResponseStatus ResponseStatus = null; public Integer getEventsMatched() { return EventsMatched; } public EnginePumpResponse setEventsMatched(Integer value) { this.EventsMatched = value; return this; } public Integer getRunsExecuted() { return RunsExecuted; } public EnginePumpResponse setRunsExecuted(Integer value) { this.RunsExecuted = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EnginePumpResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }