/* Options: Date: 2025-12-06 06:05:50 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateInvoiceRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class Invoice implements IConvertible { int? InvoiceID; String? InvoiceUID; String? ProjectUID; String? InvoiceNumber; DateTime? InvoiceDate; DateTime? DueDate; String? FromName; String? FromPhone; String? FromEmail; String? FromAddress; String? FromDesc; String? ToName; String? ToPhone; String? ToEmail; String? ToAddress; String? ToDesc; String? Notes; String? Currency; int? Status; double? Total; bool? IsPaid; DateTime? PaidDate; bool? IsDeleted; bool? IsLocked; DateTime? CreatedDate; DateTime? ModifiedDate; String? CreatedByUID; Invoice({this.InvoiceID,this.InvoiceUID,this.ProjectUID,this.InvoiceNumber,this.InvoiceDate,this.DueDate,this.FromName,this.FromPhone,this.FromEmail,this.FromAddress,this.FromDesc,this.ToName,this.ToPhone,this.ToEmail,this.ToAddress,this.ToDesc,this.Notes,this.Currency,this.Status,this.Total,this.IsPaid,this.PaidDate,this.IsDeleted,this.IsLocked,this.CreatedDate,this.ModifiedDate,this.CreatedByUID}); Invoice.fromJson(Map json) { fromMap(json); } fromMap(Map json) { InvoiceID = json['InvoiceID']; InvoiceUID = json['InvoiceUID']; ProjectUID = json['ProjectUID']; InvoiceNumber = json['InvoiceNumber']; InvoiceDate = JsonConverters.fromJson(json['InvoiceDate'],'DateTime',context!); DueDate = JsonConverters.fromJson(json['DueDate'],'DateTime',context!); FromName = json['FromName']; FromPhone = json['FromPhone']; FromEmail = json['FromEmail']; FromAddress = json['FromAddress']; FromDesc = json['FromDesc']; ToName = json['ToName']; ToPhone = json['ToPhone']; ToEmail = json['ToEmail']; ToAddress = json['ToAddress']; ToDesc = json['ToDesc']; Notes = json['Notes']; Currency = json['Currency']; Status = json['Status']; Total = JsonConverters.toDouble(json['Total']); IsPaid = json['IsPaid']; PaidDate = JsonConverters.fromJson(json['PaidDate'],'DateTime',context!); IsDeleted = json['IsDeleted']; IsLocked = json['IsLocked']; CreatedDate = JsonConverters.fromJson(json['CreatedDate'],'DateTime',context!); ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); CreatedByUID = json['CreatedByUID']; return this; } Map toJson() => { 'InvoiceID': InvoiceID, 'InvoiceUID': InvoiceUID, 'ProjectUID': ProjectUID, 'InvoiceNumber': InvoiceNumber, 'InvoiceDate': JsonConverters.toJson(InvoiceDate,'DateTime',context!), 'DueDate': JsonConverters.toJson(DueDate,'DateTime',context!), 'FromName': FromName, 'FromPhone': FromPhone, 'FromEmail': FromEmail, 'FromAddress': FromAddress, 'FromDesc': FromDesc, 'ToName': ToName, 'ToPhone': ToPhone, 'ToEmail': ToEmail, 'ToAddress': ToAddress, 'ToDesc': ToDesc, 'Notes': Notes, 'Currency': Currency, 'Status': Status, 'Total': Total, 'IsPaid': IsPaid, 'PaidDate': JsonConverters.toJson(PaidDate,'DateTime',context!), 'IsDeleted': IsDeleted, 'IsLocked': IsLocked, 'CreatedDate': JsonConverters.toJson(CreatedDate,'DateTime',context!), 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!), 'CreatedByUID': CreatedByUID }; getTypeName() => "Invoice"; TypeContext? context = _ctx; } class InvoiceLineItem implements IConvertible { int? InvoiceLineItemID; int? InvoiceID; String? Type; String? Name; int? Quantity; double? PercentageAdjust; double? AmountAdjust; double? Price; String? Description; String? Notes; bool? IsTaxable; int? DisplayOrder; bool? IsLocked; bool? IsDeleted; bool? IsPaid; DateTime? CreatedDate; DateTime? ModifiedDate; String? CreatedByUID; InvoiceLineItem({this.InvoiceLineItemID,this.InvoiceID,this.Type,this.Name,this.Quantity,this.PercentageAdjust,this.AmountAdjust,this.Price,this.Description,this.Notes,this.IsTaxable,this.DisplayOrder,this.IsLocked,this.IsDeleted,this.IsPaid,this.CreatedDate,this.ModifiedDate,this.CreatedByUID}); InvoiceLineItem.fromJson(Map json) { fromMap(json); } fromMap(Map json) { InvoiceLineItemID = json['InvoiceLineItemID']; InvoiceID = json['InvoiceID']; Type = json['Type']; Name = json['Name']; Quantity = json['Quantity']; PercentageAdjust = JsonConverters.toDouble(json['PercentageAdjust']); AmountAdjust = JsonConverters.toDouble(json['AmountAdjust']); Price = JsonConverters.toDouble(json['Price']); Description = json['Description']; Notes = json['Notes']; IsTaxable = json['IsTaxable']; DisplayOrder = json['DisplayOrder']; IsLocked = json['IsLocked']; IsDeleted = json['IsDeleted']; IsPaid = json['IsPaid']; CreatedDate = JsonConverters.fromJson(json['CreatedDate'],'DateTime',context!); ModifiedDate = JsonConverters.fromJson(json['ModifiedDate'],'DateTime',context!); CreatedByUID = json['CreatedByUID']; return this; } Map toJson() => { 'InvoiceLineItemID': InvoiceLineItemID, 'InvoiceID': InvoiceID, 'Type': Type, 'Name': Name, 'Quantity': Quantity, 'PercentageAdjust': PercentageAdjust, 'AmountAdjust': AmountAdjust, 'Price': Price, 'Description': Description, 'Notes': Notes, 'IsTaxable': IsTaxable, 'DisplayOrder': DisplayOrder, 'IsLocked': IsLocked, 'IsDeleted': IsDeleted, 'IsPaid': IsPaid, 'CreatedDate': JsonConverters.toJson(CreatedDate,'DateTime',context!), 'ModifiedDate': JsonConverters.toJson(ModifiedDate,'DateTime',context!), 'CreatedByUID': CreatedByUID }; getTypeName() => "InvoiceLineItem"; TypeContext? context = _ctx; } class UpdateInvoiceResponse implements IConvertible { ResponseStatus? ResponseStatus; bool? Success; UpdateInvoiceResponse({this.ResponseStatus,this.Success}); UpdateInvoiceResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); Success = json['Success']; return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!), 'Success': Success }; getTypeName() => "UpdateInvoiceResponse"; TypeContext? context = _ctx; } // @Route("/v1/invoice", "PUT,OPTIONS") class UpdateInvoiceRequest implements IReturn, IConvertible, IPut { Invoice? Invoice; List? LineItems = []; UpdateInvoiceRequest({this.Invoice,this.LineItems}); UpdateInvoiceRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Invoice = JsonConverters.fromJson(json['Invoice'],'Invoice',context!); LineItems = JsonConverters.fromJson(json['LineItems'],'List',context!); return this; } Map toJson() => { 'Invoice': JsonConverters.toJson(Invoice,'Invoice',context!), 'LineItems': JsonConverters.toJson(LineItems,'List',context!) }; createResponse() => UpdateInvoiceResponse(); getResponseTypeName() => "UpdateInvoiceResponse"; getTypeName() => "UpdateInvoiceRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'Invoice': TypeInfo(TypeOf.Class, create:() => Invoice()), 'InvoiceLineItem': TypeInfo(TypeOf.Class, create:() => InvoiceLineItem()), 'UpdateInvoiceResponse': TypeInfo(TypeOf.Class, create:() => UpdateInvoiceResponse()), 'UpdateInvoiceRequest': TypeInfo(TypeOf.Class, create:() => UpdateInvoiceRequest()), 'List': TypeInfo(TypeOf.Class, create:() => []), });