/* Options: Date: 2026-01-08 11:12:08 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.foundrylab.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RegisterPersonUserRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/users/register", Verbs="POST") open class RegisterPersonUserRequest : PostOperationUnTenanted(), IReturn { var firstName:String? = null var lastName:String? = null var emailAddress:String? = null var password:String? = null var timezone:String? = null var termsAndConditionsAccepted:Boolean? = null companion object { private val responseType = RegisterPersonUserResponse::class.java } override fun getResponseType(): Any? = RegisterPersonUserRequest.responseType } open class RegisterPersonUserResponse { var responseStatus:ResponseStatus? = null var userId:String? = null var referrerUrl:String? = null } open class PostOperationUnTenanted : IPost { }