/* Options: Date: 2024-07-03 13:00:44 Version: 8.23 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: SuperAdminDeleteSupportCaseComment.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export interface ISupportCase extends ICompany { Id: number; } export class SupportCaseCommentsResponse { /** @description The case id */ // @ApiMember(Description="The case id") public SupportCaseId: number; /** @description The comments id */ // @ApiMember(Description="The comments id") public Id: number; /** @description The case comment */ // @ApiMember(Description="The case comment") public Comment: string; /** @description The case comment created by */ // @ApiMember(Description="The case comment created by") public CreatedBy: string; /** @description The case comment created date */ // @ApiMember(Description="The case comment created date") public Created: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/superadmin/support/cases/{SupportCaseId}/comments/{Id}", "DELETE") // @ValidateRequest(Validator="IsAuthenticated") export class SuperAdminDeleteSupportCaseComment implements IReturn, ISupportCase { /** @description 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 CompanyId: string; /** @description The support case id */ // @ApiMember(Description="The support case id", ParameterType="path") public SupportCaseId: number; /** @description The support case comment id */ // @ApiMember(Description="The support case comment id", ParameterType="path") public Id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SuperAdminDeleteSupportCaseComment'; } public getMethod() { return 'DELETE'; } public createResponse() { return new SupportCaseCommentsResponse(); } }