/* Options: Date: 2024-07-03 13:09:37 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: ServicePricesMappingQuery.* //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", "GET") // @ValidateRequest(Validator="IsAuthenticated") export class ServicePricesMappingQuery implements IReturn, ICompany { /** @description Company to show services for */ // @ApiMember(Description="Company to show services for") public CompanyId?: string; /** @description ReferenceType */ // @ApiMember(Description="ReferenceType") public ReferenceType: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ServicePricesMappingQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new ServicePriceMappingResponse(); } }