(* Options: Date: 2025-09-14 07:06:35 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: SaveIntegration.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type IntegrationVersion() = member val Major:Int32 = new Int32() with get,set member val Minor:Int32 = new Int32() with get,set member val Build:Int32 = new Int32() with get,set member val Revision:Int32 = new Int32() with get,set [] type IntegrationWinVersion() = member val Name:String = null with get,set member val Version:String = null with get,set member val Build:Int32 = new Int32() with get,set member val ServicePack:String = null with get,set [] type IntegrationFileModel() = member val index:Int32 = new Int32() with get,set member val Name:String = null with get,set member val Content:String = null with get,set member val ContentType:String = null with get,set member val FileSizeKB:Int32 = new Int32() with get,set member val BlobUri:String = null with get,set member val CreatedDate:DateTime = new DateTime() with get,set member val Notes:String = null with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = null with get,set [] member val Meta:Dictionary = null with get,set [] [] type SaveIntegrationResponse() = member val IntegrationId:Guid = new Guid() with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] type SaveIntegration() = interface IReturn /// ///The integration reference ID which is the gateway packet id. If the value passed is empty, new packet record will be created. /// [] member val IntegrationId:Guid = new Guid() with get,set /// ///Name or title of the integration /// [] member val Title:String = null with get,set /// ///Version information of the integration module. /// [] member val Version:IntegrationVersion = null with get,set /// ///User who requested the integration /// [] member val User:String = null with get,set /// ///Local computer where the integration is performed on /// [] member val LocalComputer:String = null with get,set /// ///Windows version information /// [] member val WinVersion:IntegrationWinVersion = null with get,set /// ///Completed status of the integration /// [] member val Completed:Boolean = new Boolean() with get,set /// ///Status of the integration. /// [] member val Status:String = null with get,set /// ///Start date and time of the integration. /// [] member val StartTime:DateTime = new DateTime() with get,set /// ///End date and time of the integration. /// [] member val EndTime:DateTime = new DateTime() with get,set /// ///Settings XML being used in the integration. /// [] member val SettingsFile:IntegrationFileModel = null with get,set /// ///File (xml) containing the results of the integration /// [] member val ResultsFile:IntegrationFileModel = null with get,set /// ///File (xml) containing the issues that were identified during integration /// [] member val IssuesFile:IntegrationFileModel = null with get,set