/* Options: Date: 2026-08-01 17:04:07 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dmsshow.kyocerasolutions.cz //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PostConnections.* //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.* @Route(Path="/connections", Verbs="POST") open class PostConnections : IReturn { open var LoginCommand:String? = null open var LogoutCommand:String? = null open var Password:String? = null open var SaveCommand:String? = null open var UserName:String? = null companion object { private val responseType = GetConnectionsResponse::class.java } override fun getResponseType(): Any? = PostConnections.responseType } open class GetConnectionsResponse { open var Connections:ArrayList? = null open var IsAuthenticated:Boolean? = null } interface IUser : IIdTemplatesItem { var Groups:ReadOnlyCollection? var EmailAddress:String? var HasPassword:Boolean? var HomeFolder:String? var Password:String? var SbcUser:Boolean? var Language:String? } interface IConnectorConnection : IStatus { var ConnectorId:UUID? var Description:String? var Id:String? var MaxConnections:Int? var Name:String? var Permissions:ReadOnlyCollection? var PropertyDescriptions:ReadOnlyCollection? var SetupUser:IUser? } interface IStatus : IInterface { var Status:Boolean? } interface IInterface { } interface IUserGroup : IIdTemplatesItem, IGroup { var Users:ReadOnlyCollection? } interface IIdTemplatesItem : IStatus { var Id:String? var Name:String? var Description:String? var Templates:ReadOnlyCollection? } interface IConnectionPermission : IInterface { var Allow:Boolean? var Connection:IConnectorConnection? var Type:PermissionType? } interface IConnectionPropertyDescription : IInterface { var Description:String? var Name:String? var PropertyId:UUID? var PropertyType:PropertyType? } interface IGroup : IInterface { var UseGroupSettings:Boolean? } enum class PermissionType { Group, User, } enum class PropertyType(val value:Int) { Binary(1), Boolean(2), ConnectionString(3), Credential(4), Integer(5), Picklist(6), String(7), OAuth2(8), Certificate(9), }