(* Options: Date: 2025-09-14 06:46:49 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-platform-apisubscription.azurewebsites.net/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ImportXml.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModelSubscription open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ImportXml() = interface IReturn /// ///XML string (encoded to base 64) containing data to import into EROS from external system. /// [] member val XmlToImport:String = null with get,set /// ///Guid representing the external systems datasource information. /// [] member val SuiteDataSourceInstanceId:Guid = new Guid() with get,set /// ///Import data type. /// [] member val ImportTypeId:Guid = new Guid() with get,set /// ///Data collected from foreign system falls within now and this date. /// [] member val CollectionDate:DateTime = new DateTime() with get,set /// ///Bin Row Version of the last update /// [] member val RowVersion:Byte[] = null with get,set /// ///If true, previous failed import attempts will be removed. /// [] member val RemovePreviousAttempts:Boolean = new Boolean() with get,set