/* Options: Date: 2024-06-26 11:53:29 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: DeleteNewsletterTemplate.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/newsletter/templates/{Id}", "DELETE") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") public class DeleteNewsletterTemplate : IReturn, ICompany, Codable { public typealias Return = NewsletterTemplatesQueryResponse /** * The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public var companyId:String? /** * The newsletter template id. */ // @ApiMember(Description="The newsletter template id.", IsRequired=true, ParameterType="path") public var id:Int required public init(){} } public class NewsletterTemplatesQueryResponse : Codable { /** * The newsletter template id */ // @ApiMember(Description="The newsletter template id") public var id:Int /** * The newsletter template heading. */ // @ApiMember(Description="The newsletter template heading.") public var heading:String /** * The newsletter template body. */ // @ApiMember(Description="The newsletter template body.") public var body:String /** * The email template the newsletter uses. */ // @ApiMember(Description="The email template the newsletter uses.") public var emailTemplateId:Int? /** * Send Method. 1 = Email, 2 = SMS */ // @ApiMember(Description="Send Method. 1 = Email, 2 = SMS") public var sendMethodId:Int /** * The newsletter template image url. */ // @ApiMember(Description="The newsletter template image url.") public var imageUrl:String /** * The newsletter created date. */ // @ApiMember(Description="The newsletter created date.") public var created:Date /** * Send method information. */ // @ApiMember(Description="Send method information.") public var sendMethodInformation:NewsletterSendMethodQueryResponse /** * Email template information. */ // @ApiMember(Description="Email template information.") public var emailTemplateInformation:NewsletterEmailTemplatesQueryResponse required public init(){} } public protocol ICompany { var companyId:String? { get set } } public class NewsletterSendMethodQueryResponse : Codable { /** * The send method id */ // @ApiMember(Description="The send method id") public var id:Int /** * The send method name. */ // @ApiMember(Description="The send method name.") public var name:String /** * The send method description. */ // @ApiMember(Description="The send method description.") public var Description:String required public init(){} } public class NewsletterEmailTemplatesQueryResponse : Codable { /** * The email template id */ // @ApiMember(Description="The email template id") public var id:Int /** * The email template name. */ // @ApiMember(Description="The email template name.") public var name:String /** * The email template description. */ // @ApiMember(Description="The email template description.") public var Description:String /** * The email template html content. */ // @ApiMember(Description="The email template html content.") public var body:String required public init(){} }