/* Options: Date: 2024-05-29 04:21:37 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AuthorizeCallback.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/integrations/authorize/callback", "GET") class AuthorizeCallback implements IConvertible { String? state; AuthorizeCallback({this.state}); AuthorizeCallback.fromJson(Map json) { fromMap(json); } fromMap(Map json) { state = json['state']; return this; } Map toJson() => { 'state': state }; getTypeName() => "AuthorizeCallback"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'evovoice.io', types: { 'AuthorizeCallback': TypeInfo(TypeOf.Class, create:() => AuthorizeCallback()), });