/* Options: Date: 2026-01-22 01:42:53 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPriceTypes.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export class Status { public message: string; public statusCode: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BaseResponse { public status: Status; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class PriceType { public id: number; // @Required() // @StringLength(50) public name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetPriceTypesResponse extends BaseResponse { public priceTypes: PriceType[]; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/api/v1/utils/price-types", "GET") export class GetPriceTypes implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPriceTypes'; } public getMethod() { return 'GET'; } public createResponse() { return new GetPriceTypesResponse(); } }