/* Options: Date: 2025-08-05 02:26:42 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: GetSslOffloadingStatus.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class SslOffloadingProxy implements IConvertible { bool? Enabled; SslOffloadingProxy({this.Enabled}); SslOffloadingProxy.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Enabled = json['Enabled']; return this; } Map toJson() => { 'Enabled': Enabled }; getTypeName() => "SslOffloadingProxy"; TypeContext? context = _ctx; } // @Route("/diagnostics/ssl-offloading", "GET") class GetSslOffloadingStatus implements IReturn, IConvertible, IGet { GetSslOffloadingStatus(); GetSslOffloadingStatus.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => SslOffloadingProxy(); getResponseTypeName() => "SslOffloadingProxy"; getTypeName() => "GetSslOffloadingStatus"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'SslOffloadingProxy': TypeInfo(TypeOf.Class, create:() => SslOffloadingProxy()), 'GetSslOffloadingStatus': TypeInfo(TypeOf.Class, create:() => GetSslOffloadingStatus()), });