/* Options: Date: 2025-12-15 14:27:46 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: UnsubscribeEmailTopic.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Globalization; using ServiceStack.Data; using System.Net; using System.Net.Http.Headers; using BokaMera.API.ServiceModel.Dtos; namespace BokaMera.API.ServiceModel.Dtos { [Route("/unsubscribe", "POST")] public partial class UnsubscribeEmailTopic : IReturn { /// ///The email address to unsubscribe. /// [ApiMember(Description="The email address to unsubscribe.", IsRequired=true)] public virtual string Email { get; set; } /// ///Configuration set identifier used when sending the email. /// [ApiMember(Description="Configuration set identifier used when sending the email.", IsRequired=true)] public virtual string ConfigurationSet { get; set; } /// ///Topic identifier used when sending the email. /// [ApiMember(Description="Topic identifier used when sending the email.", IsRequired=true)] public virtual string Topic { get; set; } /// ///Verification token from the unsubscribe link. /// [ApiMember(Description="Verification token from the unsubscribe link.", IsRequired=true)] public virtual string Token { get; set; } } public partial class UnsubscribeEmailTopicResponse { public virtual string Email { get; set; } public virtual string ConfigurationSet { get; set; } public virtual string Topic { get; set; } public virtual bool Unsubscribed { get; set; } } }