/* Options: Date: 2025-12-14 05:13:31 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UnsubscribeEmailTopic.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UnsubscribeEmailTopicResponse { public Email: string; public ConfigurationSet: string; public Topic: string; public Unsubscribed: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/unsubscribe", "POST") export class UnsubscribeEmailTopic implements IReturn { /** @description The email address to unsubscribe. */ // @ApiMember(Description="The email address to unsubscribe.", IsRequired=true) public Email: string; /** @description Configuration set identifier used when sending the email. */ // @ApiMember(Description="Configuration set identifier used when sending the email.", IsRequired=true) public ConfigurationSet: string; /** @description Topic identifier used when sending the email. */ // @ApiMember(Description="Topic identifier used when sending the email.", IsRequired=true) public Topic: string; /** @description Verification token from the unsubscribe link. */ // @ApiMember(Description="Verification token from the unsubscribe link.", IsRequired=true) public Token: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UnsubscribeEmailTopic'; } public getMethod() { return 'POST'; } public createResponse() { return new UnsubscribeEmailTopicResponse(); } }