/* Options: Date: 2025-04-05 01:38:52 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteCompanyCommentSuperAdminUser.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export enum CommentsType { NormalComment = 1, CallBackPhoneComment = 2, CallBackEmailComment = 3, CallBackMeetingBookedComment = 4, CallBackNotInterestedComment = 5, } export class CommentsType extends BaseModel { public Id: number; public Name: string; public Description: string; public ModifiedDate?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class CommentsTypeResponse { public Id: number; public Name: string; public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class CompanyCommentsResponse { // @ApiMember() public CompanyId?: string; // @ApiMember() public Id: number; // @ApiMember(IsRequired=true) public Comment: string; // @ApiMember(IsRequired=true) public CommentTypeId: CommentsType; // @ApiMember(IsRequired=true) public CommentType: CommentsTypeResponse; /** @description The updated date */ // @ApiMember(Description="The updated date") public Updated: string; /** @description The created date */ // @ApiMember(Description="The created date") public Created: string; /** @description The created by */ // @ApiMember(Description="The created by") public CreatedBy: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/superadmin/company/{CompanyId}/comments/{Id}", "DELETE") // @ApiResponse(Description="", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) export class DeleteCompanyCommentSuperAdminUser implements IReturn, ICompany { /** @description Enter the companyId for the customer */ // @ApiMember(Description="Enter the companyId for the customer", IsRequired=true, ParameterType="query") public CompanyId: string; // @ApiMember(IsRequired=true, ParameterType="query") public Id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteCompanyCommentSuperAdminUser'; } public getMethod() { return 'DELETE'; } public createResponse() { return new CompanyCommentsResponse(); } }