/* Options:
Date: 2026-06-22 04:37:35
Version: 8.52
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://gatewayframeworkapi.pstpf.com.au/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: GetCommunicationData.*
//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.Saguna.Common.WebAPI.ServiceModel;
using FrameworkApi.Models;
namespace Eros.Saguna.Common.WebAPI.ServiceModel
{
public partial interface ISubscription
{
Guid SuiteDataSourceInstanceId { get; set; }
Guid ObjectId { get; set; }
string AlternateKey { get; set; }
bool IgnoreValidation { get; set; }
}
}
namespace FrameworkApi.Models
{
///
///Retrieves communications from the Communication database to be saved to Framework
///
[Api(Description="Retrieves communications from the Communication database to be saved to Framework")]
public partial class GetCommunicationData
: IReturn, ISubscription
{
///
///Bin Row Version of the last update
///
[ApiMember(DataType="byte[]", Description="Bin Row Version of the last update", Name="BinRowVersion")]
public virtual byte[] BinRowVersion { get; set; }
///
///Suite Data Source Instance Id to determine which licensees data to retrieve.
///
[ApiMember(DataType="Guid", Description="Suite Data Source Instance Id to determine which licensees data to retrieve.", Name="SuiteDataSourceInstanceId")]
public virtual Guid SuiteDataSourceInstanceId { get; set; }
///
///Batch Call Number.
///
[ApiMember(DataType="int", Description="Batch Call Number.", Name="BatchNumber")]
public virtual int BatchNumber { get; set; }
///
///Number of records to retrieve per call.
///
[ApiMember(DataType="int", Description="Number of records to retrieve per call.", Name="BatchSize")]
public virtual int BatchSize { get; set; }
public virtual bool IgnoreValidation { get; set; }
}
[ApiResponse(Description="Communications Data for synching to Framework")]
public partial class GetCommunicationDataResponse
{
///
///Bin Row Version of the last update
///
[ApiMember(DataType="byte[]", Description="Bin Row Version of the last update", Name="BinRowVersion")]
public virtual byte[] BinRowVersion { get; set; }
///
///Communication Data string (compressed/zipped)
///
[ApiMember(DataType="string", Description="Communication Data string (compressed/zipped)", Name="Communications")]
public virtual string Communications { get; set; }
public virtual ResponseStatus ResponseStatus { get; set; }
}
}