/* Options: Date: 2025-06-07 19:57:19 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: GruposxVistaRQ.* //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("/Utilidades/GruposxVista") open class GruposxVistaRQ : IReturn { var idGrupo:Int? = null companion object { private val responseType = GruposxVistaRS::class.java } override fun getResponseType(): Any? = GruposxVistaRQ.responseType } open class GruposxVistaRS { @SerializedName("data") var Data:ArrayList> = ArrayList>() var success:String? = null var error:String? = null }