getMarketTaxRatesAsync

fun getMarketTaxRatesAsync(world: World): Promise<dynamic>

Returns the current tax rate data for the specified World.

This function is designed to be used from JavaScript. For use within Kotlin, see getMarketTaxRates.

Parameters

world

The World to retrieve data for.

Throws

The Universalis API returned an unexpected return code.

@JvmName(name = "getMarketTaxRates")
fun getMarketTaxRatesAsync(world: World): CompletableFuture<Map<City, Byte>>

Returns the current tax rate data for the specified World.

This function is designed to be used from non-Kotlin JVM languages. For use within Kotlin, see getMarketTaxRates.

Parameters

world

The World to retrieve data for.

Throws

The Universalis API returned an unexpected return code.