/* Options: Date: 2026-06-01 14:59:45 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: GetSyncInfo.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class SyncInfoProxy implements IConvertible { DateTime? NextSyncDate; SyncInfoProxy({this.NextSyncDate}); SyncInfoProxy.fromJson(Map json) { fromMap(json); } fromMap(Map json) { NextSyncDate = JsonConverters.fromJson(json['NextSyncDate'],'DateTime',context!); return this; } Map toJson() => { 'NextSyncDate': JsonConverters.toJson(NextSyncDate,'DateTime',context!) }; getTypeName() => "SyncInfoProxy"; TypeContext? context = _ctx; } // @Route("/translations/syncinfo", "GET") class GetSyncInfo implements IReturn, IConvertible, IGet { GetSyncInfo(); GetSyncInfo.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => SyncInfoProxy(); getResponseTypeName() => "SyncInfoProxy"; getTypeName() => "GetSyncInfo"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.imglobal.com', types: { 'SyncInfoProxy': TypeInfo(TypeOf.Class, create:() => SyncInfoProxy()), 'GetSyncInfo': TypeInfo(TypeOf.Class, create:() => GetSyncInfo()), });