AjaxResponse

@Serializable
data class AjaxResponse(val ajaxObjects: List<AjaxObject>)(source)

Container for responses returned by Tibia’s AJAX endpoints.

The AjaxObjects field contains one or more elements wrapping HTML fragments or auxiliary metadata used by website features such as character trades, auctions, pagination, or filtering panels.

Each entry is represented as an AjaxObject.

Constructors

Link copied to clipboard
constructor(ajaxObjects: List<AjaxObject>)

Properties

Link copied to clipboard
@SerialName(value = "AjaxObjects")
val ajaxObjects: List<AjaxObject>

List of AJAX objects returned by the endpoint.