<?php /** * Format * * PHP version 5 * * @category Class * @package Swagger\Client * @author Swaagger Codegen team * @link https://github.com/swagger-api/swagger-codegen */ /** * Moosend API * * TODO: Add a description * * OpenAPI spec version: 1.0 * * 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 Swagger\Client\Model; /** * Format Class Doc Comment * * @category Class * @package Swagger\Client * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen */ class Format { /** * Possible values of this enum */ const JSON = 'json'; const XML = 'xml'; /** * Gets allowable values of the enum * @return string[] */ public static function getAllowableEnumValues() { return [ self::JSON, self::XML, ]; } }