/* Options: Date: 2026-01-27 22:29:55 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.vionfood.com/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RepairWordDocument.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; abstract class IRepairWordDocument extends IRepairOfficeDocument { } 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; } abstract class IRepairWordDocumentResponse extends IGenerateDocumentResponse { } class RepairWordDocumentResponse implements IRepairWordDocumentResponse, 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; } /** * Generate new or update a (corporate identity) document based on an existing document registration. */ // @Api(Description="Generate new or update a (corporate identity) document based on an existing document registration.") class RepairWordDocument implements IReturn, IRepairWordDocument, IConvertible { /** * 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: 'digiofficeapigateway.vionfood.com', types: { 'IRepairWordDocument': TypeInfo(TypeOf.Interface), 'IRepairOfficeDocument': TypeInfo(TypeOf.Interface), 'IGenerateDocumentResponse': TypeInfo(TypeOf.Interface), 'IRepairWordDocumentResponse': TypeInfo(TypeOf.Interface), 'RepairWordDocumentResponse': TypeInfo(TypeOf.Class, create:() => RepairWordDocumentResponse()), 'RepairWordDocument': TypeInfo(TypeOf.Class, create:() => RepairWordDocument()), });