/* Options: Date: 2025-07-17 22:12:55 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ChangelogStatusReqV2.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/changelogstatus/{status}/{isFromSource}", "GET") class ChangelogStatusReqV2 implements IReturn, IConvertible { String? status; bool? isFromSource; ChangelogStatusReqV2({this.status,this.isFromSource}); ChangelogStatusReqV2.fromJson(Map json) { fromMap(json); } fromMap(Map json) { status = json['status']; isFromSource = json['isFromSource']; return this; } Map toJson() => { 'status': status, 'isFromSource': isFromSource }; createResponse() => 0; getResponseTypeName() => "int"; getTypeName() => "ChangelogStatusReqV2"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'hcbtas_q_albamfs_api.azurewebsites.net', types: { 'ChangelogStatusReqV2': TypeInfo(TypeOf.Class, create:() => ChangelogStatusReqV2()), });