/* Options: Date: 2025-09-14 06:40:21 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: SaveObjectStructure.* //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.* /** * Inserts or Updates an object connection structure. */ @Api(Description="Inserts or Updates an object connection structure.") open class SaveObjectStructure : IReturn, ISubscription { /** * Guid representing the external systems datasource information. */ @ApiMember(DataType="Guid", Description="Guid representing the external systems datasource information.", Name="SuiteDataSourceInstanceId") override var SuiteDataSourceInstanceId:UUID? = null /** * The unique key that represents the connection structure object on the external system. */ @ApiMember(DataType="string", Description="The unique key that represents the connection structure object on the external system.", Name="AlternateKey") override var AlternateKey:String? = null /** * Guid of the connection structure object within Eros. If ObjectId is known, the external system may pass this instead of the alternate key. */ @ApiMember(DataType="Guid", Description="Guid of the connection structure object within Eros. If ObjectId is known, the external system may pass this instead of the alternate key.", Name="ObjectId") override var ObjectId:UUID? = null /** * Connection Structure RmsTableCtxId. */ @ApiMember(DataType="Guid", Description="Connection Structure RmsTableCtxId.", Name="RmsTableCtxId") open var RmsTableCtxId:UUID? = null override var IgnoreValidation:Boolean? = null /** * Id of the Connection Structure Definition. */ @ApiMember(DataType="Guid", Description="Id of the Connection Structure Definition.", Name="StructureDefinitionId") open var StructureDefinitionId:UUID? = null /** * Id of the Structure Type. */ @ApiMember(DataType="Guid", Description="Id of the Structure Type.", Name="StructureTypeId") open var StructureTypeId:UUID? = null /** * XML for the children in the structure for the object indicated via alternateKey/objectId. */ @ApiMember(DataType="string", Description="XML for the children in the structure for the object indicated via alternateKey/objectId.", Name="StructureDefinitionXml") open var StructureDefinitionXml:String? = null /** * Connection Structure Name. */ @ApiMember(DataType="string", Description="Connection Structure Name.", Name="Name") open var Name:String? = null /** * Connection Structure Reference. */ @ApiMember(DataType="string", Description="Connection Structure Reference.", Name="Reference") open var Reference:String? = null open var LicenseeId:UUID? = null open var SessionId:UUID? = null companion object { private val responseType = ResponseStatus::class.java } override fun getResponseType(): Any? = SaveObjectStructure.responseType } @DataContract open class ResponseStatus { @DataMember(Order=1) open var ErrorCode:String? = null @DataMember(Order=2) open var Message:String? = null @DataMember(Order=3) open var StackTrace:String? = null @DataMember(Order=4) open var Errors:ArrayList? = null @DataMember(Order=5) open var Meta:HashMap? = null } interface ISubscription { var SuiteDataSourceInstanceId:UUID? var ObjectId:UUID? var AlternateKey:String? var IgnoreValidation:Boolean? }