forked from loafle/openapi-generator-original
52 lines
972 B
PHP
52 lines
972 B
PHP
<?php
|
|
/**
|
|
* StringEnumRef
|
|
*
|
|
* PHP version 8.1
|
|
*
|
|
* @category Class
|
|
* @package OpenAPI\Client
|
|
* @author OpenAPI Generator team
|
|
* @link https://openapi-generator.tech
|
|
*/
|
|
|
|
/**
|
|
* Echo Server API
|
|
*
|
|
* Echo Server API
|
|
*
|
|
* The version of the OpenAPI document: 0.1.0
|
|
* Contact: team@openapitools.org
|
|
* @generated Generated by: https://openapi-generator.tech
|
|
* OpenAPI Generator version: 7.0.1-SNAPSHOT
|
|
*/
|
|
|
|
/**
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
namespace OpenAPI\Client\Model;
|
|
use \OpenAPI\Client\ObjectSerializer;
|
|
|
|
/**
|
|
* StringEnumRef Class Doc Comment
|
|
*
|
|
* @category Class
|
|
* @package OpenAPI\Client
|
|
* @author OpenAPI Generator team
|
|
* @link https://openapi-generator.tech
|
|
*/
|
|
enum StringEnumRef: string
|
|
{
|
|
case SUCCESS = 'success';
|
|
|
|
case FAILURE = 'failure';
|
|
|
|
case UNCLASSIFIED = 'unclassified';
|
|
|
|
}
|
|
|
|
|