Seat

Extends \NextEvent\PHPSDK\Model\Model

Seat information model

Struct for seat information assigend an order/basket item.

package

NextEvent\PHPSDK\Model

Methods

Supports getX or hasX Methods for properties which are yet unknown.

__call(string $name, array $args) : mixed
inherited

If the source of your model contains, e.g. a property named 'my_property', you can call getMyProperty() to retrieve it's value.

Arguments

$name

string

$args

array

Response

mixed

Model constructor

__construct(array $source) 
inherited

Parse source data.

Throws
\NextEvent\PHPSDK\Exception\InvalidModelDataException

Arguments

$source

array

The source data as received from the API

Get the value for the given variable.

get(string $var) : mixed
inherited

Should be used, if you expect the model to have custom properties which are not known/covered by the known getters

Arguments

$var

string

Response

mixed

Get the display name of this seat

getDisplayname() : string

Can be used to display seat information in basket/order listings

Response

string

Get the unique identifier for this seat

getId() : integer

Response

integer

Get the name/title of the seat map

getMapTitle() : string|null

Response

string|null

Compose a label for the seat's place information

getPlaceLabel(string $template = '') : string

Arguments

$template

string

(Localized) template with a %s placeholder for the place number

Response

string

Compose a label for the seat's row information

getRowLabel(string $template = '') : string

Arguments

$template

string

(Localized) template with a %s placeholder for the row number

Response

string

Check model state if it is valid

isValid() : boolean
inherited abstract

Response

boolean

String representation of object

serialize() : string
inherited

Implements Serializable interface

Response

string

Convert model to an Array

toArray() : array
inherited

Response

array

Convert the model for logging

toLogContext() : array
inherited

Implements the LogContextInterface interface

Response

array

Represent the model as string

toString() : string
inherited

Response

string

Constructs the object from a string

unserialize( $serialized) 
inherited

Implements Serializable interface

Arguments

$serialized