/* Options: Date: 2026-01-14 10:44:28 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://iso-api.adumen.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TestDataRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/test-data", Verbs="POST") open class TestDataRequest { @SerializedName("type") var Type:String? = null var value:String? = null var id:Int? = null }