/* Options: Date: 2026-04-13 05:43:19 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetGmailAuthUrl.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class GmailAuthUrlResponse implements IConvertible { String? url; GmailAuthUrlResponse({this.url}); GmailAuthUrlResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { url = json['url']; return this; } Map toJson() => { 'url': url }; getTypeName() => "GmailAuthUrlResponse"; TypeContext? context = _ctx; } // @Route("/gmail/auth-url", "GET") class GetGmailAuthUrl implements IReturn, IConvertible, IGet { GetGmailAuthUrl(); GetGmailAuthUrl.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => GmailAuthUrlResponse(); getResponseTypeName() => "GmailAuthUrlResponse"; getTypeName() => "GetGmailAuthUrl"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'etc_api.vsmlab.vn', types: { 'GmailAuthUrlResponse': TypeInfo(TypeOf.Class, create:() => GmailAuthUrlResponse()), 'GetGmailAuthUrl': TypeInfo(TypeOf.Class, create:() => GetGmailAuthUrl()), });