/* Options: Date: 2025-09-14 06:59:41 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-platform-apisubscription.azurewebsites.net/api //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: ImportXml.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Eros.Subtle.Canvara.WebAPIModel.ServiceModelSubscription; namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModelSubscription { public partial class ImportXml : IReturn { /// ///XML string (encoded to base 64) containing data to import into EROS from external system. /// [ApiMember(DataType="string", Description="XML string (encoded to base 64) containing data to import into EROS from external system.", Name="XmlToImport", ParameterType="query")] public virtual string XmlToImport { get; set; } /// ///Guid representing the external systems datasource information. /// [ApiMember(DataType="Guid", Description="Guid representing the external systems datasource information.", Name="SuiteDataSourceInstanceId", ParameterType="query")] public virtual Guid SuiteDataSourceInstanceId { get; set; } /// ///Import data type. /// [ApiMember(DataType="Guid", Description="Import data type.", Name="ImportTypeId", ParameterType="query")] public virtual Guid ImportTypeId { get; set; } /// ///Data collected from foreign system falls within now and this date. /// [ApiMember(DataType="DateTime", Description="Data collected from foreign system falls within now and this date.", Name="CollectionDate", ParameterType="query")] public virtual DateTime CollectionDate { get; set; } /// ///Bin Row Version of the last update /// [ApiMember(DataType="byte[]", Description="Bin Row Version of the last update", Name="RowVersion", ParameterType="query")] public virtual byte[] RowVersion { get; set; } /// ///If true, previous failed import attempts will be removed. /// [ApiMember(DataType="bool", Description="If true, previous failed import attempts will be removed.", Name="RemovePreviousAttempts", ParameterType="query")] public virtual bool RemovePreviousAttempts { get; set; } } }