A class which implements the Spawnable interface can be used to define whether a Model can be created, without having specific properties set, such as a unique identifier.
Access code model
An access code is used in the entrance check process.
Each access code owns a (bar)code, a category id and a state.
A Gate is responsible for invalidating,
i.e. modifying the entry_state
, of such an access code.
The access code collection holds access code instances.
An instance of this collection can update the entry state of all access codes inside of it with one single API request.
Class APIResponse
A wrapper class for responses returned by GuzzleHttp. Adds utility functions used by the SDK
BaseCategory model
Provides the structure for a base category record.
Base categories are categories which can not be booked and are never linked to an order item. Base categories are internally used to create category records. All values which are set for a base category will automatically be applied to the related category records.
BasePrice model
Provides the structure for a base price record.
A base price is a price which applies it's data to actual price records. A base price is never linked to a category record. It rather links to a BaseCategory. Just like a base category, a base price is never linked to an order item.
BasketItem model
Model class representing a single item (ticket) of a NextEvent basket
Cancellation request model
Represents a cancellation request for a given order. Can be used to confirm cancellation in a second step.
A collection holds instances of models by converting them from raw data.
It has meta information about the total amount of items, pages and references to other pages. Further more it allows to iterate over all total items, by simply fetching the next page if the bounds of the current page have been reached.
If you want to fetch the next page manually, you can call Collection::fetchNextPage(). This will fetch the next page, if it is available and apply the content to this collection.
In order to fetch a specific page and apply it to the collection, you can fetch it with the rest client
and then apply it via Collection::setData(). Whether you want to reset the current data or not
can be controlled with the flag reset
.
Class DateTime
Extend the default DateTime class with a flag indicating that it only represent a date and the time should be ignored.
Device model
A device entity represents a real world device. It holds information such as the device UUID, platform(os) and it's version and the device name. A device can also tell on which gate it is logged in and when it has been logged in the last time.
Discount code model
Struct for a discount code record assigned to an order/basket item or a DiscountGroup relation.
Event model
Model class for an event record registered in NextEvent. Provides simplified access to event title, details, start/end dates, etc.
Gate model
A gate represents an entity which is responsible for invalidating access codes. It can only invalidate those access codes whose category id matches one of the gate's category ids.
GeoCoordinates model
Struct for a pair of geographic coordinates as defined in the World Geodetic System (WGS 84).
Class HALResponse
A wrapper class for Responses returned by GuzzleHttp. The Responses are parsed as HAL+JSON and made accessible by this class.
Base class for model classes
Data structures retrieved from the NextEvent API are wrapped into dependants of this class in order to provide a well-defined struct for accessing these informations.
With the Serializable interface implemented, all models can easily be serialized and stored in session data.
A mutable model is a model whose source attributes can be changed.
An instance of a mutable model provides setters for any property.
This means you can call e.g. $model->setFoo($val)
which will will store the value at the index foo
in the internal source array.
You can also override the whole source at once with the MutableModel::setSource().
OrderDocument model
Represents a printable PDF document attached to an order
Payment model
Represents a payment authorization record issued by the API. Can be used to process payment and finally settle orders.
ScanLog model
A scan log holds entry information of an access code. Those information contain process time, gate which scanned the code and which device has done it. Furthermore it holds connection state information and the validation message. This model can be used to analyze the entrance checks.
TicketDocument model
Represents a printable PDF document attached to a ticket
A webhook message comes from the platform the app runs on and contains data, which can be used for various processes.
The instance of this class should be used, to verify content of the incoming message to make your platform more secure. In order to verify the incoming message, you have to know the secret, you configured on the webhook in the NextEvent App.
Example:
try {
$gate = WebhookMessage::current()->verify()->getModel(Gate::class);
// Do something...
}
catch (WebhookMessageException $exception) {
// Handle this
}