/* Options: Date: 2025-07-18 00:40:00 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AuthIDP.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/auth/idp") open class AuthIDP : IReturn { var email:String? = null var userInfoToken:String? = null companion object { private val responseType = Object::class.java } override fun getResponseType(): Any? = AuthIDP.responseType }