/* Options: Date: 2025-09-03 19:06:51 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetOrganisationRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/organisation", Verbs="GET") open class GetOrganisationRequest : GetOperationTenanted(), IReturn { companion object { private val responseType = GetOrganisationResponse::class.java } override fun getResponseType(): Any? = GetOrganisationRequest.responseType } open class GetOrganisationResponse { var responseStatus:ResponseStatus? = null var organisation:Organisation? = null } open class GetOperationUnTenanted : IHasGetOptions, IGet { var embed:String? = null } open interface IHasGetOptions { var embed:String? } open interface ITenantedRequest { var organisationId:String? } open class GetOperationTenanted : GetOperationUnTenanted(), ITenantedRequest { var organisationId:String? = null } open class Organisation : IIdentifiableResource { var displayName:String? = null var owners:ArrayList = ArrayList() var isDefault:Boolean? = null var id:String? = null var forceTwoFactor:Boolean? = null } open interface IIdentifiableResource { var id:String? }