(* Options: Date: 2025-06-27 21:36:03 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ValidateBulkUnSecureRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Mercedes.VehicleManagement.API.Shared.POCO.BulkSecure open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type BulkSecureRow() = member val Row:Int32 = new Int32() with get,set member val Comm:String = null with get,set member val Reason:String = null with get,set [] type BulkSecureValidationRow() = inherit BulkSecureRow() member val FailureReason:String = null with get,set [] type ValidateBulkSecureProcessResponse() = member val Success:Boolean = new Boolean() with get,set member val ValidationRows:ResizeArray = null with get,set [] [] type ValidateBulkUnSecureRequest() = interface IReturn interface IPost