. * * For more information, contact Colosa Inc, 2566 Le Jeune Rd., * Coral Gables, FL, 33134, USA, or email info@colosa.com. */ /** * * @package workflow.engine.classes */ /** * Class wsCreateDepartmentResponse * * @package workflow.engine.classes */class wsCreateDepartmentResponse { public $status_code = 0; public $message = ''; public $departmentUID = ''; public $timestamp = ''; /** * Function __construct * Constructor of the class * * @param string $status * @param string $message * @param string $departmentUID * @return void */ function __construct ($status, $message, $departmentUID) { $this->status_code = $status; $this->message = $message; $this->departmentUID = $departmentUID; $this->timestamp = date( 'Y-m-d H:i:s' ); } }