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