/* Options: Date: 2024-07-03 13:40:51 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: DeleteServicePricesMapping.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class ServicePriceMappingResponse { /** @description The company id */ // @ApiMember(Description="The company id") public CompanyId: string; public Id: string; /** @description The price id */ // @ApiMember(Description="The price id") public PriceId: number; /** @description The external reference */ // @ApiMember(Description="The external reference") public ExternalReference: string; /** @description The Reference Type */ // @ApiMember(Description="The Reference Type") public ReferenceType: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/services/prices/mappings/{Id}", "DELETE") // @ValidateRequest(Validator="IsAuthenticated") export class DeleteServicePricesMapping implements IReturn, ICompany { /** @description Company to delete price for */ // @ApiMember(Description="Company to delete price for") public CompanyId?: string; /** @description Id of the service */ // @ApiMember(Description="Id of the service", IsRequired=true, ParameterType="path") public Id: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteServicePricesMapping'; } public getMethod() { return 'DELETE'; } public createResponse() { return new ServicePriceMappingResponse(); } }