/* Options: Date: 2026-04-02 03:48:31 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SetConfiguration.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class SetConfigurationResponse implements IConvertible { String? NextSyncRun; SetConfigurationResponse({this.NextSyncRun}); SetConfigurationResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { NextSyncRun = json['NextSyncRun']; return this; } Map toJson() => { 'NextSyncRun': NextSyncRun }; getTypeName() => "SetConfigurationResponse"; TypeContext? context = _ctx; } // @Route("/translations/configure", "POST") class SetConfiguration implements IReturn, IConvertible, IPost { String? Cron; SetConfiguration({this.Cron}); SetConfiguration.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Cron = json['Cron']; return this; } Map toJson() => { 'Cron': Cron }; createResponse() => SetConfigurationResponse(); getResponseTypeName() => "SetConfigurationResponse"; getTypeName() => "SetConfiguration"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.imglobal.com', types: { 'SetConfigurationResponse': TypeInfo(TypeOf.Class, create:() => SetConfigurationResponse()), 'SetConfiguration': TypeInfo(TypeOf.Class, create:() => SetConfiguration()), });