/* Options: Date: 2026-01-22 01:52:22 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: GetProfile.* //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 GetProfileResponse extends BaseResponse implements IConvertible { String? firstName; String? lastName; String? userType; String? phoneNumber; String? country; GetProfileResponse({this.firstName,this.lastName,this.userType,this.phoneNumber,this.country}); GetProfileResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); firstName = json['firstName']; lastName = json['lastName']; userType = json['userType']; phoneNumber = json['phoneNumber']; country = json['country']; return this; } Map toJson() => super.toJson()..addAll({ 'firstName': firstName, 'lastName': lastName, 'userType': userType, 'phoneNumber': phoneNumber, 'country': country }); getTypeName() => "GetProfileResponse"; TypeContext? context = _ctx; } // @Route("/api/v1/profile", "GET") class GetProfile implements IReturn, IGet, IConvertible { GetProfile(); GetProfile.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => GetProfileResponse(); getResponseTypeName() => "GetProfileResponse"; getTypeName() => "GetProfile"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pecuario_backend.develsystems.com', types: { 'Status': TypeInfo(TypeOf.Class, create:() => Status()), 'BaseResponse': TypeInfo(TypeOf.Class, create:() => BaseResponse()), 'GetProfileResponse': TypeInfo(TypeOf.Class, create:() => GetProfileResponse()), 'GetProfile': TypeInfo(TypeOf.Class, create:() => GetProfile()), });