/* Options: Date: 2026-06-15 08:14:53 Version: 6.02 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.backgroundchecklatam.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: laftValidation.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using APIbackgroundchecklatam.ServiceModel; namespace APIbackgroundchecklatam.ServiceModel { [Route("/laftValidation/{customerApiCode}/{countryISO3}/{documentType}/{document}/{fullName}")] public partial class laftValidation : IReturn { public virtual string CustomerApiCode { get; set; } public virtual string CountryISO3 { get; set; } public virtual string DocumentType { get; set; } public virtual string Document { get; set; } public virtual string FullName { get; set; } } public partial class laftValidationResult { public virtual laftValidation SearchData { get; set; } public virtual DateTime ProcessDate { get; set; } public virtual bool HasSuspectedLaftCases { get; set; } public virtual string SuspectedLaftCaseSources { get; set; } public virtual string Error { get; set; } } }