lionbridge_content_api_test-8.x-4.0/tmgmt_contentapi/src/Swagger/Client/Model/ListenerTypeEnum.php
tmgmt_contentapi/src/Swagger/Client/Model/ListenerTypeEnum.php
<?php
/**
* ListenerTypeEnum
*
* PHP version 5
*
* @category Class
* @package Drupal\tmgmt_contentapi\Swagger\Client
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
/**
* The Lionbridge Content API
*
* Enable translations with the Lionbridge Content API.
*
* OpenAPI spec version: 1.4.3
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
* Swagger Codegen version: 2.3.1
*/
/**
* 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 Drupal\tmgmt_contentapi\Swagger\Client\Model;
/**
* ListenerTypeEnum Class Doc Comment
*
* @category Class
* @description The type of listner. JOB_STATUS_UPDATED will send events only about the job as a whole. REQUEST_STATUS_UPDATED will send events on a request by request basis for the job.
* @package Drupal\tmgmt_contentapi\Swagger\Client
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
class ListenerTypeEnum
{
/**
* Possible values of this enum
*/
const JOB_STATUS_UPDATED = 'JOB_STATUS_UPDATED';
const REQUEST_STATUS_UPDATED = 'REQUEST_STATUS_UPDATED';
/**
* Gets allowable values of the enum
* @return string[]
*/
public static function getAllowableEnumValues()
{
return [
self::JOB_STATUS_UPDATED,
self::REQUEST_STATUS_UPDATED,
];
}
}
