/* Options: Date: 2026-02-14 11:52:23 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: AcknowledgeReceivingAdvice.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Receiving Advice */ // @Route("/receivingAdvice/{ReceivingAdviceId}/acknowledge", "PUT") // @Api(Description="Receiving Advice") // @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 AcknowledgeReceivingAdvice implements IReturnVoid, IConvertible, IPut { // @ApiMember(ExcludeInSchema=true, ParameterType="path") String receivingAdviceId = ""; AcknowledgeReceivingAdvice({this.receivingAdviceId}); AcknowledgeReceivingAdvice.fromJson(Map json) { fromMap(json); } fromMap(Map json) { receivingAdviceId = json['receivingAdviceId']; return this; } Map toJson() => { 'receivingAdviceId': receivingAdviceId }; createResponse() {} getTypeName() => "AcknowledgeReceivingAdvice"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stf_api_uat.data_xchange.co.za', types: { 'AcknowledgeReceivingAdvice': TypeInfo(TypeOf.Class, create:() => AcknowledgeReceivingAdvice()), });