/* Options: Date: 2026-04-04 04:54:34 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RemoveUserProfile.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Removes a Users Profile' */ @Route(Path="/profiles/remove/{UserProfileId}", Verbs="PUT") @Api(Description="Removes a Users Profile'") open class RemoveUserProfile : IReturn { open var UserProfileId:UUID? = null companion object { private val responseType = RemoveUserProfileResponse::class.java } override fun getResponseType(): Any? = RemoveUserProfile.responseType } open class RemoveUserProfileResponse { open var Errors:ArrayList? = null /** * Guid representing the object that is the User Profile Id in Eros. */ @ApiMember(DataType="Guid", Description="Guid representing the object that is the User Profile Id in Eros.", Name="UserProfileId", ParameterType="query") open var UserProfileId:UUID? = null /** * Service Stack Response Status. */ @ApiMember(DataType="ResponseStatus", Description="Service Stack Response Status.", Name="ResponseStatus", ParameterType="query") open var ResponseStatus:ResponseStatus? = null }