/* Options: Date: 2025-08-04 03:14:01 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddAdminUser.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/adminuser", Verbs="POST") open class AddAdminUser : IReturn { var Email:String? = null var Password:String? = null var DisplayName:String? = null var OrganizationUnit:String? = null var Position:String? = null var MobilePhoneNumberCountryCodeId:Int? = null var MobilePhoneNumber:String? = null var IsResetPassword:Boolean? = null companion object { private val responseType = AddUserResponse::class.java } override fun getResponseType(): Any? = AddAdminUser.responseType } open class AddUserResponse : ModifyEntityResponse() { var IsConfirmationEmailSent:Boolean? = null var IsResetPasswordEmailSent:Boolean? = null } open class ModifyEntityResponse : ResponseBase() { var Id:Int? = null }