/* Options: Date: 2025-08-05 02:43:38 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: SitemapStartManualMessage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/sitefinity/sitemap/Start") // @Route("/sitefinity/sitemap/Start/{Id}") class SitemapStartManualMessage implements IConvertible, IGet { String? Id; SitemapStartManualMessage({this.Id}); SitemapStartManualMessage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; getTypeName() => "SitemapStartManualMessage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'SitemapStartManualMessage': TypeInfo(TypeOf.Class, create:() => SitemapStartManualMessage()), });