/* Options: Date: 2025-12-11 16:00:48 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TestDataRequest.* //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="/test-data", Verbs="POST") public static class TestDataRequest { public String type = null; public String value = null; public Integer id = null; public String getType() { return type; } public TestDataRequest setType(String value) { this.type = value; return this; } public String getValue() { return value; } public TestDataRequest setValue(String value) { this.value = value; return this; } public Integer getId() { return id; } public TestDataRequest setId(Integer value) { this.id = value; return this; } } }