/* Options: Date: 2026-01-27 18:51:21 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetConnections.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/connections", Verbs="GET") open class GetConnections : IReturn { companion object { private val responseType = GetConnectionsResponse::class.java } override fun getResponseType(): Any? = GetConnections.responseType } open class GetConnectionsResponse { var Connections:ArrayList = ArrayList() var IsAuthenticated:Boolean? = null } open interface IUser : IIdTemplatesItem { var Groups:ReadOnlyCollection? var EmailAddress:String? var HasPassword:Boolean? var HomeFolder:String? var Password:String? var SbcUser:Boolean? } open 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? } open interface IStatus : IInterface { var Status:Boolean? } open interface IInterface { } open interface IUserGroup : IIdTemplatesItem, IGroup { var Users:ReadOnlyCollection? } open interface IIdTemplatesItem : IStatus { var Id:String? var Name:String? var Description:String? var Templates:ReadOnlyCollection? } open interface IConnectionPermission : IInterface { var Allow:Boolean? var Connection:IConnectorConnection? var Type:PermissionType? } open interface IConnectionPropertyDescription : IInterface { var Description:String? var Name:String? var PropertyId:UUID? var PropertyType:PropertyType? } open 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), }