/* Options: Date: 2026-01-22 01:45:57 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPriceTypes.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class Status implements IConvertible { String? message; int? statusCode; Status({this.message,this.statusCode}); Status.fromJson(Map json) { fromMap(json); } fromMap(Map json) { message = json['message']; statusCode = json['statusCode']; return this; } Map toJson() => { 'message': message, 'statusCode': statusCode }; getTypeName() => "Status"; TypeContext? context = _ctx; } class BaseResponse implements IConvertible { Status? status; BaseResponse({this.status}); BaseResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { status = JsonConverters.fromJson(json['status'],'Status',context!); return this; } Map toJson() => { 'status': JsonConverters.toJson(status,'Status',context!) }; getTypeName() => "BaseResponse"; TypeContext? context = _ctx; } class PriceType implements IConvertible { int? id; // @required() // @StringLength(50) String? name; PriceType({this.id,this.name}); PriceType.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; name = json['name']; return this; } Map toJson() => { 'id': id, 'name': name }; getTypeName() => "PriceType"; TypeContext? context = _ctx; } class GetPriceTypesResponse extends BaseResponse implements IConvertible { List? priceTypes; GetPriceTypesResponse({this.priceTypes}); GetPriceTypesResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); priceTypes = JsonConverters.fromJson(json['priceTypes'],'List',context!); return this; } Map toJson() => super.toJson()..addAll({ 'priceTypes': JsonConverters.toJson(priceTypes,'List',context!) }); getTypeName() => "GetPriceTypesResponse"; TypeContext? context = _ctx; } // @Route("/api/v1/utils/price-types", "GET") class GetPriceTypes implements IReturn, IGet, IConvertible { GetPriceTypes(); GetPriceTypes.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => GetPriceTypesResponse(); getResponseTypeName() => "GetPriceTypesResponse"; getTypeName() => "GetPriceTypes"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pecuario_backend.develsystems.com', types: { 'Status': TypeInfo(TypeOf.Class, create:() => Status()), 'BaseResponse': TypeInfo(TypeOf.Class, create:() => BaseResponse()), 'PriceType': TypeInfo(TypeOf.Class, create:() => PriceType()), 'GetPriceTypesResponse': TypeInfo(TypeOf.Class, create:() => GetPriceTypesResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'GetPriceTypes': TypeInfo(TypeOf.Class, create:() => GetPriceTypes()), });