/* Options: Date: 2025-12-07 00:15:21 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sfgtec.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AuthoriseFunction.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/authorizefunction", Verbs="POST") open class AuthoriseFunction { @Validate(Validator="Email") var eMail:String? = null @Validate(Validator="[NotNull,NotEmpty]") var password:String? = null var systemFunction:String? = null var responseStatus:ResponseStatus? = null }