/* Options: Date: 2026-04-05 03:37:34 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GoogleLoginMessage.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/Sitefinity/Analytics/GetGoogleLoginUrl") // @Route("/GetGoogleLoginUrl") open class GoogleLoginMessage : IReturn { var ClientId:String? = null var ClientSecret:String? = null var ReturnHash:String? = null var SiteId:UUID? = null companion object { private val responseType = AccountData::class.java } override fun getResponseType(): Any? = GoogleLoginMessage.responseType } open class AccountData { var UserName:String? = null var AccountId:String? = null }