override suspend fun createInvestigations()

in teamcity-rest-client-impl/src/main/kotlin/org/jetbrains/teamcity/rest/coroutines/implementation.kt [268:273]


    override suspend fun createInvestigations(investigations: Collection<Investigation>) {
        val bean = InvestigationListBean().apply {
            investigation = investigations.map(Investigation::toInvestigationBean)
        }
        service.createInvestigations(bean)
    }