/* Options: Date: 2025-12-06 07:03:28 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateOrderOfWearPriceProfileRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IPut { } export class UpdateOrderOfWearPriceProfileResponse { public success?: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/wear_price_profile/update_order", "PUT") export class UpdateOrderOfWearPriceProfileRequest implements IReturn, IPut { public slugs: string[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateOrderOfWearPriceProfileRequest'; } public getMethod() { return 'PUT'; } public createResponse() { return new UpdateOrderOfWearPriceProfileResponse(); } } }