(* Options: Date: 2026-06-06 01:02:54 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://link.dc8.unico3.cloud //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: Scadenza.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Unico3.Link.API.Messages open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type FK() = member val Id:Nullable = new Nullable() with get,set [] type FK_Anagrafica() = inherit FK() member val Codice:Nullable = new Nullable() with get,set member val CodiceExport:String = null with get,set type SezioneScadenza = | ATTIVA = 0 | PASSIVA = 1 type TipoScadenza = | Bonifico = 0 | Insoluto = 1 | RID = 2 | RicevutaBancaria = 3 | RimessaDiretta = 4 | RitenutaAcconto = 5 | RitenutaEnasarco = 6 | ScontoBonus = 7 | SplitPayment = 8 | Tratta = 9 type StatoScadenza = | Aperto = 0 | Chiuso = 1 | Insoluto = 2 | Presentato = 3 | Contestuale = 4 [] type IForeignKey = abstract Id:Nullable with get,set [] type IUniqueCodiceExport = abstract CodiceExport:String with get,set [] type IUniqueCodiceNumerico = abstract Codice:Nullable with get,set [] [] type Scadenza() = interface IReturn member val CodiceExport:String = null with get,set member val Id:Nullable = new Nullable() with get,set member val AttivaPassiva:Nullable = new Nullable() with get,set member val Tipo:Nullable = new Nullable() with get,set member val Stato:Nullable = new Nullable() with get,set member val Anagrafica:FK_Anagrafica = null with get,set member val Importo:Nullable = new Nullable() with get,set member val DataScadenza:Nullable = new Nullable() with get,set member val NumeroDocumento:String = null with get,set member val SuffissoDocumento:String = null with get,set member val DataDocumento:Nullable = new Nullable() with get,set member val DescrizioneTipologiaDocumento:String = null with get,set