<tr><td>TITLE</td><td>the title of the tickets event</td></tr>
<tr><td>DATETIME</td><td>the localized date and time when the event starts</td></tr>
<tr><td>ARTIST</td><td>the artist for this event</td></tr>
+<tr><td>PRICECATEGORY</td><td>the price category name this ticket is in</td></tr>
+<tr><td>PRICECATEGORYABBR</td><td>the abbreviation of the price category this ticket is in</td></tr>
</table>
<h3>Voucher Variables</h3>
if(var=="ROOM")return tick.event().room();
if(var=="TITLE")return tick.event().title();
if(var=="ARTIST")return tick.event().artist().value().name();
+ if(var=="PRICECATEGORY")return tick.priceCategoryName();
+ if(var=="PRICECATEGORYABBR")return tick.priceCategoryShort();
return "";
}