/* Options: Date: 2025-06-07 18:34:16 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ValoresDefectoFormaRQ.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/Utilidades/Formas/ValoresDefecto") open class ValoresDefectoFormaRQ : IReturn { var IDTabla:Int? = null var Parametros:HashMap = HashMap() companion object { private val responseType = ValoresDefectoFormaRS::class.java } override fun getResponseType(): Any? = ValoresDefectoFormaRQ.responseType } open class ValoresDefectoFormaRS { var ValoresDefecto:HashMap = HashMap() }