/* Options: Date: 2024-07-03 12:43:47 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: DeleteCustomerComments.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class CustomerCommentsResponse { public Id: number; public CustomerId: string; public Comments: string; public Updated: string; public Created: string; public ImageUrl: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/customers/{CustomerId}/comments/{Id}", "DELETE") // @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") export class DeleteCustomerComments implements IReturn, ICompany { // @ApiMember(IsRequired=true, ParameterType="path") public Id: number; // @ApiMember(IsRequired=true, ParameterType="path") public CustomerId: string; // @ApiMember() public CompanyId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteCustomerComments'; } public getMethod() { return 'DELETE'; } public createResponse() { return new CustomerCommentsResponse(); } }