/* Options: Date: 2026-03-31 19:58:33 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetUserPrivacyInformation.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class UserPrivacyInformation implements IConvertible { bool? ShowPrivacyStatement; UserPrivacyInformation({this.ShowPrivacyStatement}); UserPrivacyInformation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ShowPrivacyStatement = json['ShowPrivacyStatement']; return this; } Map toJson() => { 'ShowPrivacyStatement': ShowPrivacyStatement }; getTypeName() => "UserPrivacyInformation"; TypeContext? context = _ctx; } // @Route("/users/{UserID}/extranet/{ExtranetEnvironment}/privacyinformation", "GET") class GetUserPrivacyInformation implements IReturn, IConvertible, IGet { int? UserID; bool? ExtranetEnvironment; GetUserPrivacyInformation({this.UserID,this.ExtranetEnvironment}); GetUserPrivacyInformation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { UserID = json['UserID']; ExtranetEnvironment = json['ExtranetEnvironment']; return this; } Map toJson() => { 'UserID': UserID, 'ExtranetEnvironment': ExtranetEnvironment }; createResponse() => UserPrivacyInformation(); getResponseTypeName() => "UserPrivacyInformation"; getTypeName() => "GetUserPrivacyInformation"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test_do_services.klokgroep.nl', types: { 'UserPrivacyInformation': TypeInfo(TypeOf.Class, create:() => UserPrivacyInformation()), 'GetUserPrivacyInformation': TypeInfo(TypeOf.Class, create:() => GetUserPrivacyInformation()), });