/* Options: Date: 2026-08-12 19:15:54 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: MappingRuleRunRequest.* //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/records/mapping-rules/{RuleId}/run", Verbs="POST,OPTIONS") public static class MappingRuleRunRequest implements IReturn { public Integer RuleId = null; public Boolean DryRun = null; public Integer getRuleId() { return RuleId; } public MappingRuleRunRequest setRuleId(Integer value) { this.RuleId = value; return this; } public Boolean isDryRun() { return DryRun; } public MappingRuleRunRequest setDryRun(Boolean value) { this.DryRun = value; return this; } private static Object responseType = MappingRuleRunResponse.class; public Object getResponseType() { return responseType; } } public static class MappingRuleRunResponse { public ResponseStatus ResponseStatus = null; public ArrayList Matched = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public MappingRuleRunResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getMatched() { return Matched; } public MappingRuleRunResponse setMatched(ArrayList value) { this.Matched = value; return this; } } }