/* Options: Date: 2024-10-18 04:29:36 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetIsDocumentExternalLink.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetIsDocumentExternalLink implements IReturn, IConvertible { String? DocumentId; GetIsDocumentExternalLink({this.DocumentId}); GetIsDocumentExternalLink.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DocumentId = json['DocumentId']; return this; } Map toJson() => { 'DocumentId': DocumentId }; createResponse() => bool(); getResponseTypeName() => "bool"; getTypeName() => "GetIsDocumentExternalLink"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.deltares.nl', types: { 'GetIsDocumentExternalLink': TypeInfo(TypeOf.Class, create:() => GetIsDocumentExternalLink()), });