/* Options: Date: 2026-04-06 21:56:18 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: GetDashboardsMessage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/Sitefinity/Analytics/GetDashboards") // @Route("/GetDashboards") class GetDashboardsMessage implements IConvertible, IGet { String? Id; String? SiteId; GetDashboardsMessage({this.Id,this.SiteId}); GetDashboardsMessage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; SiteId = json['SiteId']; return this; } Map toJson() => { 'Id': Id, 'SiteId': SiteId }; getTypeName() => "GetDashboardsMessage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'GetDashboardsMessage': TypeInfo(TypeOf.Class, create:() => GetDashboardsMessage()), });