/* Options: Date: 2024-06-17 01:48:41 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: SuperAdminDeleteSupportCaseComment.* //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("/superadmin/support/cases/{SupportCaseId}/comments/{Id}", "DELETE")] [ValidateRequest("IsAuthenticated")] public partial class SuperAdminDeleteSupportCaseComment : IReturn, ISupportCase { /// ///Enter the company id, if blank company id and you are an admin, your company id will be used. /// [ApiMember(Description="Enter the company id, if blank company id and you are an admin, your company id will be used.", IsRequired=true)] public virtual Guid? CompanyId { get; set; } /// ///The support case id /// [ApiMember(Description="The support case id", ParameterType="path")] public virtual int SupportCaseId { get; set; } /// ///The support case comment id /// [ApiMember(Description="The support case comment id", ParameterType="path")] public virtual int Id { get; set; } } public partial class SupportCaseCommentsResponse { /// ///The case id /// [ApiMember(Description="The case id")] public virtual int SupportCaseId { get; set; } /// ///The comments id /// [ApiMember(Description="The comments id")] public virtual int Id { get; set; } /// ///The case comment /// [ApiMember(Description="The case comment")] public virtual string Comment { get; set; } /// ///The case comment created by /// [ApiMember(Description="The case comment created by")] public virtual string CreatedBy { get; set; } /// ///The case comment created date /// [ApiMember(Description="The case comment created date")] public virtual DateTime Created { get; set; } } } namespace BokaMera.API.ServiceModel.Interfaces { public partial interface ICompany { Guid? CompanyId { get; set; } } public partial interface ISupportCase : ICompany { int Id { get; set; } } }