getMostRecentlyUpdatedItemsAsync

Returns the most-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 getMostRecentlyUpdatedItems.

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 most-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 getMostRecentlyUpdatedItems.

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 = "getMostRecentlyUpdatedItems")
fun getMostRecentlyUpdatedItemsAsync(world: World, entries: Short? = null): CompletableFuture<RecentlyUpdatedItems>

Returns the most-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 getMostRecentlyUpdatedItems.

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 = "getMostRecentlyUpdatedItems")
fun getMostRecentlyUpdatedItemsAsync(dataCenter: DataCenter, entries: Short? = null): CompletableFuture<RecentlyUpdatedItems>

Returns the most-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 getMostRecentlyUpdatedItems.

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.