/* Options: Date: 2025-08-05 02:45:22 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: ExportedArchiveInfo.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class ArchiveStatus implements IConvertible { bool? Deleted; ArchiveStatus({this.Deleted}); ArchiveStatus.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Deleted = json['Deleted']; return this; } Map toJson() => { 'Deleted': Deleted }; getTypeName() => "ArchiveStatus"; TypeContext? context = _ctx; } // @Route("/Sitefinity/packaging/archive/status", "GET") class ExportedArchiveInfo implements IReturn, IConvertible, IGet { String? ArchiveName; ExportedArchiveInfo({this.ArchiveName}); ExportedArchiveInfo.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ArchiveName = json['ArchiveName']; return this; } Map toJson() => { 'ArchiveName': ArchiveName }; createResponse() => ArchiveStatus(); getResponseTypeName() => "ArchiveStatus"; getTypeName() => "ExportedArchiveInfo"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'ArchiveStatus': TypeInfo(TypeOf.Class, create:() => ArchiveStatus()), 'ExportedArchiveInfo': TypeInfo(TypeOf.Class, create:() => ExportedArchiveInfo()), });