/* Options: Date: 2026-04-13 05:36:54 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GmailCallback.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/gmail/callback", Verbs="GET") open class GmailCallback : IReturn { var code:String? = null var error:String? = null companion object { private val responseType = String::class.java } override fun getResponseType(): Any? = GmailCallback.responseType }