/* Options: Date: 2025-08-05 02:30:48 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EloquaFormsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/eloqua/forms", "GET") class EloquaFormsRequest implements IConvertible, IGet { String? Term; int? Take; EloquaFormsRequest({this.Term,this.Take}); EloquaFormsRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Term = json['Term']; Take = json['Take']; return this; } Map toJson() => { 'Term': Term, 'Take': Take }; getTypeName() => "EloquaFormsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'EloquaFormsRequest': TypeInfo(TypeOf.Class, create:() => EloquaFormsRequest()), });