/* Options: Date: 2025-09-03 20:32:19 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ChangeEmailAddressRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/profile/{Id}/email", Verbs="PUT,PATCH") open class ChangeEmailAddressRequest : PutPatchOperationUnTenanted(), IReturn { var id:String? = null var emailAddress:String? = null companion object { private val responseType = UpdateProfileResponse::class.java } override fun getResponseType(): Any? = ChangeEmailAddressRequest.responseType } open class UpdateProfileResponse { var responseStatus:ResponseStatus? = null var profile:Profile? = null } open class PutPatchOperationUnTenanted : IPatch, IPut { } open class Profile : ProfileBasic() { var defaultOrganisationId:String? = null } open interface IIdentifiableResource { var id:String? } open class PersonName { var firstName:String? = null var lastName:String? = null } open class ProfileBasic : IIdentifiableResource { var name:PersonName? = null var displayName:String? = null var emailAddress:String? = null var phoneNumber:String? = null var timezone:String? = null var id:String? = null }