Mods-for-HESK-Netsyms/api/BusinessLogic/Tickets/CreateTicketByCustomerModel.php
2017-02-01 22:04:52 -05:00

44 lines
527 B
PHP

<?php
namespace BusinessObjects;
class CreateTicketByCustomerModel {
// Metadata
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $email;
/**
* @var integer
*/
public $priority;
/**
* @var integer
*/
public $category;
// Message
/**
* @var string
*/
public $subject;
/**
* @var string
*/
public $message;
/**
* @var array
*/
public $customFields;
public $location;
}