/* Options: Date: 2026-04-05 03:57:05 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: GoogleLoginMessage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class AccountData implements IConvertible { String? UserName; String? AccountId; AccountData({this.UserName,this.AccountId}); AccountData.fromJson(Map json) { fromMap(json); } fromMap(Map json) { UserName = json['UserName']; AccountId = json['AccountId']; return this; } Map toJson() => { 'UserName': UserName, 'AccountId': AccountId }; getTypeName() => "AccountData"; TypeContext? context = _ctx; } // @Route("/Sitefinity/Analytics/GetGoogleLoginUrl") // @Route("/GetGoogleLoginUrl") class GoogleLoginMessage implements IReturn, IConvertible, IPost { String? ClientId; String? ClientSecret; String? ReturnHash; String? SiteId; GoogleLoginMessage({this.ClientId,this.ClientSecret,this.ReturnHash,this.SiteId}); GoogleLoginMessage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ClientId = json['ClientId']; ClientSecret = json['ClientSecret']; ReturnHash = json['ReturnHash']; SiteId = json['SiteId']; return this; } Map toJson() => { 'ClientId': ClientId, 'ClientSecret': ClientSecret, 'ReturnHash': ReturnHash, 'SiteId': SiteId }; createResponse() => AccountData(); getResponseTypeName() => "AccountData"; getTypeName() => "GoogleLoginMessage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'AccountData': TypeInfo(TypeOf.Class, create:() => AccountData()), 'GoogleLoginMessage': TypeInfo(TypeOf.Class, create:() => GoogleLoginMessage()), });