/* Options: Date: 2026-04-04 01:23:15 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: GetResetPasswordToken.* //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.* /** * Generate password reset token and send email */ @Route(Path="/account/{UserName}/passwordresettoken") @Api(Description="Generate password reset token and send email") open class GetResetPasswordToken : IReturn, IPublicServiceModel { /** * Get password reset token for the specified user name */ @ApiMember(Description="Get password reset token for the specified user name", Name="UserName") open var UserName:String? = null override var ApplianceId:UUID? = null override var SubdomainName:String? = null open var SuiteId:UUID? = null /** * Appliance Url for the appliance */ @ApiMember(Description="Appliance Url for the appliance", Name="ApplianceLoginUrl") open var ApplianceLoginUrl:String? = null companion object { private val responseType = GetResetPasswordTokenResponse::class.java } override fun getResponseType(): Any? = GetResetPasswordToken.responseType } open class GetResetPasswordTokenResponse { open var ResponseStatus:ResponseStatus? = null } interface IPublicServiceModel { var ApplianceId:UUID? var SubdomainName:String? }