/* Options: Date: 2025-04-06 15:35:38 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EncryptText.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/encryption/encrypt", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") open class EncryptText : IReturn, ICompany { var CompanyId:UUID? = null var Text:String? = null companion object { private val responseType = EncryptTextResponse::class.java } override fun getResponseType(): Any? = EncryptText.responseType } open class EncryptTextResponse { var Text:String? = null var EncryptedText:String? = null } open interface ICompany { var CompanyId:UUID? }