/* Options: Date: 2025-12-06 07:03:30 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetAllWearPriceProfileRequest.* //ExcludeTypes: //DefaultImports: */ export module BusinessApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class BusinessWearPriceProfileDto { public id?: number; public label: string; public slug: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetAllWearPriceProfileResponse { public wearPriceProfiles: BusinessWearPriceProfileDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/wear_price_profile/get_all", "GET") export class GetAllWearPriceProfileRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetAllWearPriceProfileRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetAllWearPriceProfileResponse(); } } }