/* Options: Date: 2025-05-04 23:09:49 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AppGetLogo.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/portal/logo", Verbs="GET") open class AppGetLogo : IReturn { open var accountId:String? = null companion object { private val responseType = AppGetLogoResponse::class.java } override fun getResponseType(): Any? = AppGetLogo.responseType } open class AppGetLogoResponse { open var logoUri:String? = null }