LockType

A single lock type.

More info: see the get operation and the lock types endpoint.

Fields

FieldDescription
id
int 
(required)

Unique ID

Example value:123
name
mlstring 
(required)

Name for the lock type

Example value:"VIP"
color
string 
(required)

The color of the lock type

Example value:"#AE77FB"
hideseats
bool 
(required)

Hides seats in online sales if this is true

Example value:true
ishardlock
bool 
(required)

Indicates whether this lock is a hard lock (meaning that it normally never will be released and does not count for the inventory) or a soft lock

Example value:true
isarchived
bool 
(required)

Whether or not this item is archived

createdts
timestamp 
(required)

Created timestamp

Example value:"2014-09-26 15:24:36"
lastupdatets
timestamp 
(required)

Last updated timestamp

Example value:"2014-09-26 15:24:36"

Example

 1{
 2    "id": 123,
 3    "name": "VIP",
 4    "color": "#AE77FB",
 5    "hideseats": true,
 6    "ishardlock": true,
 7    "isarchived": false,
 8    "createdts": "2014-09-26 15:24:36",
 9    "lastupdatets": "2014-09-26 15:24:36"
10}