/* Options: Date: 2025-12-14 05:16:25 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UnsubscribeEmailTopic.* //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.* @Route(Path="/unsubscribe", Verbs="POST") open class UnsubscribeEmailTopic : IReturn { /** * The email address to unsubscribe. */ @ApiMember(Description="The email address to unsubscribe.", IsRequired=true) open var Email:String? = null /** * Configuration set identifier used when sending the email. */ @ApiMember(Description="Configuration set identifier used when sending the email.", IsRequired=true) open var ConfigurationSet:String? = null /** * Topic identifier used when sending the email. */ @ApiMember(Description="Topic identifier used when sending the email.", IsRequired=true) open var Topic:String? = null /** * Verification token from the unsubscribe link. */ @ApiMember(Description="Verification token from the unsubscribe link.", IsRequired=true) open var Token:String? = null companion object { private val responseType = UnsubscribeEmailTopicResponse::class.java } override fun getResponseType(): Any? = UnsubscribeEmailTopic.responseType } open class UnsubscribeEmailTopicResponse { open var Email:String? = null open var ConfigurationSet:String? = null open var Topic:String? = null open var Unsubscribed:Boolean? = null }