/* Options: Date: 2026-02-14 10:19:53 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AcknowledgeInvoice.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Invoice */ // @Route("/invoice/{InvoiceId}/acknowledge", "PUT") // @Api(Description="Invoice") // @ApiResponse(Description="Updated", IsDefaultResponse=true, StatusCode=204) // @ApiResponse(Description="GLN does not have required access", StatusCode=403) // @ApiResponse(Description="Document not found", StatusCode=404) class AcknowledgeInvoice implements IReturnVoid, IConvertible, IPut { // @ApiMember(ExcludeInSchema=true, ParameterType="path") String invoiceId = ""; AcknowledgeInvoice({this.invoiceId}); AcknowledgeInvoice.fromJson(Map json) { fromMap(json); } fromMap(Map json) { invoiceId = json['invoiceId']; return this; } Map toJson() => { 'invoiceId': invoiceId }; createResponse() {} getTypeName() => "AcknowledgeInvoice"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stf_api_uat.data_xchange.co.za', types: { 'AcknowledgeInvoice': TypeInfo(TypeOf.Class, create:() => AcknowledgeInvoice()), });