/* Options: Date: 2026-04-04 01:20:37 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: SwitchProfile.* //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.* /** * Switch to the specified profile - create a new session, retrieve settings and return new JWT Token */ @Route(Path="/profiles/{UserProfileId}/switch/token") // @Route(Path="/profiles/{UserProfileId}/switch") @Api(Description="Switch to the specified profile - create a new session, retrieve settings and return new JWT Token") open class SwitchProfile : IReturn { /** * Id of the user profile to switch to. */ @ApiMember(Description="Id of the user profile to switch to.", Name="UserProfileId") open var UserProfileId:UUID? = null /** * Has 'Remember Me' option been selected? */ @ApiMember(Description="Has 'Remember Me' option been selected?", Name="IsPersistent") open var IsPersistent:Boolean? = null companion object { private val responseType = UpdateQuadrantResponse::class.java } override fun getResponseType(): Any? = SwitchProfile.responseType } open class UpdateQuadrantResponse { open var PerspectiveSessionId:UUID? = null open var Settings:ArrayList? = null open var Permissions:ArrayList? = null open var ResponseStatus:ResponseStatus? = null } open class SettingModel { open var SettingId:UUID? = null open var SettingName:String? = null open var SettingValue:String? = null }