<?php /** * SortMethod * * 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; /** * SortMethod Class Doc Comment * * @category Class * @package Swagger\Client * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen */ class SortMethod { /** * Possible values of this enum */ const ASC = 'ASC'; const DESC = 'DESC'; /** * Gets allowable values of the enum * @return string[] */ public static function getAllowableEnumValues() { return [ self::ASC, self::DESC, ]; } }