/* Options: Date: 2024-06-26 10:28:54 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //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: True //ExportValueTypes: False IncludeTypes: DeleteMessageTemplate.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Globalization; using System.IO; using BokaMera.API.ServiceModel.Interfaces; using BokaMera.API.ServiceModel.Dtos; namespace BokaMera.API.ServiceModel.Dtos { [Route("/messages/templates/{Id}", "DELETE")] [ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)] [ValidateRequest("IsAuthenticated")] public partial class DeleteMessageTemplate : IReturn, ICompany { /// ///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 virtual Guid? CompanyId { get; set; } /// ///The message template id. /// [ApiMember(Description="The message template id.", IsRequired=true, ParameterType="path")] public virtual int Id { get; set; } } public partial class MessageServices { public virtual int Id { get; set; } /// ///Name of the service /// [ApiMember(Description="Name of the service")] public virtual string Name { get; set; } /// ///The image url of the service /// [ApiMember(Description="The image url of the service")] public virtual Uri ImageUrl { get; set; } } public partial class MessageTemplatesQueryResponse { public MessageTemplatesQueryResponse() { Services = new List{}; } /// ///The message template id /// [ApiMember(Description="The message template id")] public virtual int Id { get; set; } /// ///The message template name. /// [ApiMember(Description="The message template name.")] public virtual string Name { get; set; } /// ///The message template title. /// [ApiMember(Description="The message template title.")] public virtual string Title { get; set; } /// ///The message template title. /// [ApiMember(Description="The message template title.")] public virtual string Body { get; set; } /// ///The message template sender (an email for message types with sendmethod 1, for SMS this cannot be set). /// [ApiMember(Description="The message template sender (an email for message types with sendmethod 1, for SMS this cannot be set).")] public virtual string Sender { get; set; } /// ///If the message template is the default message currently in use. /// [ApiMember(Description="If the message template is the default message currently in use.")] public virtual bool Default { get; set; } /// ///If the message type information. /// [ApiMember(Description="If the message type information.")] public virtual MessageTypeQueryResponse MessageType { get; set; } /// ///Template language. /// [ApiMember(Description="Template language.")] public virtual string Language { get; set; } /// ///The connected services which the template is valid for. If empty then it's valid for all services. /// [ApiMember(Description="The connected services which the template is valid for. If empty then it's valid for all services.")] public virtual List Services { get; set; } } public partial class MessageTypeQueryResponse { /// ///The message type id /// [ApiMember(Description="The message type id")] public virtual int Id { get; set; } /// ///The message type name. /// [ApiMember(Description="The message type name.")] public virtual string Name { get; set; } /// ///The message type description. /// [ApiMember(Description="The message type description.")] public virtual string Description { get; set; } /// ///The maximum number of charachters that can be entered into message body using this type. /// [ApiMember(Description="The maximum number of charachters that can be entered into message body using this type.")] public virtual int MaxCharacters { get; set; } /// ///The default text that is always included when sending messages of this type. /// [ApiMember(Description="The default text that is always included when sending messages of this type.")] public virtual string DefaultText { get; set; } /// ///The send method for this type. 1 = Email, 2 = SMS. /// [ApiMember(Description="The send method for this type. 1 = Email, 2 = SMS.")] public virtual int SendMethodId { get; set; } } } namespace BokaMera.API.ServiceModel.Interfaces { public partial interface ICompany { Guid? CompanyId { get; set; } } }