/* Options: Date: 2025-09-14 06:43:14 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-platform-apisubscription.azurewebsites.net/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetLastSuccessfulCollectionDate.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Get the last collection date for a successfully imported integrations import */ @Route(Path="/imports/lastsuccessfulcollectiondate") @Api(Description="Get the last collection date for a successfully imported integrations import") open class GetLastSuccessfulCollectionDate : IReturn { /** * Guid representing the external systems datasource information. */ @ApiMember(DataType="Guid", Description="Guid representing the external systems datasource information.", Name="SuiteDataSourceInstanceId", ParameterType="query") open var SuiteDataSourceInstanceId:UUID? = null /** * Import data type. */ @ApiMember(DataType="Guid", Description="Import data type.", Name="ImportTypeId", ParameterType="query") open var ImportTypeId:UUID? = null companion object { private val responseType = GetLastSuccessfulCollectionDateResponse::class.java } override fun getResponseType(): Any? = GetLastSuccessfulCollectionDate.responseType } @ApiResponse(Description="A datetime value which was the last collection date for a successfully processed import.") open class GetLastSuccessfulCollectionDateResponse { open var LastSuccessfulCollectionDate:Date? = null open var LastSuccessfulRowVersion:ByteArray? = null open var ResponseStatus:ResponseStatus? = null }