Skip to content
Snippets Groups Projects
Select Git revision
  • 65e519b66af17fa1ddd363d2d72b64351bcd1cfb
  • master default
  • rename_category_group
  • php8.1_deprecations
  • v3.5
  • v3.3.1
  • v3.4
  • v3.3
  • v3.2
  • v3.1
  • v3.0
  • v2.4
  • v2.3
  • v2.2
  • v2.1
  • v2.0
  • v1.0
17 results

Event.php

Blame
  • 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'
        ];