/* Options: Date: 2025-09-03 18:55:59 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: UpdateProfileRequest.* //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}", Verbs="PUT,PATCH") open class UpdateProfileRequest : PutPatchOperationUnTenanted(), IReturn { var id:String? = null var firstName:String? = null var lastName:String? = null var displayName:String? = null var phoneNumber:String? = null var timezone:String? = null companion object { private val responseType = UpdateProfileResponse::class.java } override fun getResponseType(): Any? = UpdateProfileRequest.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 }