Select Git revision
Event.php 13.40 KiB
<?php
/**
* Event
*
* PHP version 5
*
* @category Class
* @package jards\eventsapiclient\Swagger\Client
* @author Swaagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
/**
* Event receiver service. Send any events, which should be handled by this service.
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 0.1
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*
*/
/**
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen
* Do not edit the class manually.
*/
namespace jards\eventsapiclient\Swagger\Client\Model;
use \ArrayAccess;
/**
* Event Class Doc Comment
*
* @category Class
* @package jards\eventsapiclient\Swagger\Client
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
class Event implements ArrayAccess
{
const DISCRIMINATOR = null;
/**
* The original name of the model.
* @var string
*/
protected static $swaggerModelName = 'Event';
/**
* Array of property to type mappings. Used for (de)serialization
* @var string[]
*/
protected static $swaggerTypes = [
'date' => '\DateTime',
'name' => 'string',
'description' => 'string',
'id' => 'int',
'source' => 'string',
'new_state' => 'string',
'trigger_type' => 'string',
'institutions' => 'string[]',
'groupid' => 'int',
'groupname' => 'string',
'project' => '\jards\eventsapiclient\Swagger\Client\Model\Project',
'application' => '\jards\eventsapiclient\Swagger\Client\Model\Application'
];