getLeastRecentlyUpdatedItemsAsync

Returns the least-recently updated items on the specified World, along with the upload times for each item.

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

Parameters

world

The World to request data for.

entries

The number of entries to return (default 50, max 200).

Throws

The Universalis API returned an unexpected return code.


Returns the least-recently updated items on the specified DataCenter, along with the upload times for each item.

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

Parameters

dataCenter

The DataCenter to request data for.

entries

The number of entries to return (default 50, max 200).

Throws

The Universalis API returned an unexpected return code.

@JvmName(name = "getLeastRecentlyUpdatedItems")
fun getLeastRecentlyUpdatedItemsAsync(world: World, entries: Short? = null): CompletableFuture<RecentlyUpdatedItems>

Returns the least-recently updated items on the specified World, along with the upload times for each item.

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

Parameters

world

The World to request data for.

entries

The number of entries to return (default 50, max 200).

Throws

The Universalis API returned an unexpected return code.


@JvmName(name = "getLeastRecentlyUpdatedItems")
fun getLeastRecentlyUpdatedItemsAsync(dataCenter: DataCenter, entries: Short? = null): CompletableFuture<RecentlyUpdatedItems>

Returns the least-recently updated items on the specified DataCenter, along with the upload times for each item.

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

Parameters

dataCenter

The DataCenter to request data for.

entries

The number of entries to return (default 50, max 200).

Throws

The Universalis API returned an unexpected return code.