/* Options: Date: 2025-07-04 16:19:45 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RepairWordDocument.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class IRepairOfficeDocument { /** * ID of the current document registration */ // @ApiMember(Description="ID of the current document registration", IsRequired=true) String? RegisteredDocumentID; } abstract class IGenerateDocumentResponse { String? DocumentID; } class RepairWordDocumentResponse implements IGenerateDocumentResponse, IConvertible { /** * Contains the registration ID of the generated (corporate identity) document */ // @ApiMember(Description="Contains the registration ID of the generated (corporate identity) document", IsRequired=true) String? DocumentID; RepairWordDocumentResponse({this.DocumentID}); RepairWordDocumentResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DocumentID = json['DocumentID']; return this; } Map toJson() => { 'DocumentID': DocumentID }; getTypeName() => "RepairWordDocumentResponse"; TypeContext? context = _ctx; } /** * Repair a (corporate identity) MS Word document based on an existing document registration. */ // @Api(Description="Repair a (corporate identity) MS Word document based on an existing document registration.") class RepairWordDocument implements IReturn, IRepairOfficeDocument, IConvertible, IPost { /** * ID of the current document registration */ // @ApiMember(Description="ID of the current document registration", IsRequired=true) String? RegisteredDocumentID; RepairWordDocument({this.RegisteredDocumentID}); RepairWordDocument.fromJson(Map json) { fromMap(json); } fromMap(Map json) { RegisteredDocumentID = json['RegisteredDocumentID']; return this; } Map toJson() => { 'RegisteredDocumentID': RegisteredDocumentID }; createResponse() => RepairWordDocumentResponse(); getResponseTypeName() => "RepairWordDocumentResponse"; getTypeName() => "RepairWordDocument"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'IRepairOfficeDocument': TypeInfo(TypeOf.Interface), 'IGenerateDocumentResponse': TypeInfo(TypeOf.Interface), 'RepairWordDocumentResponse': TypeInfo(TypeOf.Class, create:() => RepairWordDocumentResponse()), 'RepairWordDocument': TypeInfo(TypeOf.Class, create:() => RepairWordDocument()), });