<?php
use \WsdlToPhp\PackageBase\AbstractStructEnumBase;

/**
 * This class stands for InviaPresenza_Results EnumType
 * Meta information extracted from the WSDL
 * - nillable: true
 * - type: tns:InviaPresenza_Results
 * @subpackage Enumerations
 */
class InviaPresenza_Results extends AbstractStructEnumBase
{
    /**
     * Constant for value 'Errore'
     * @return string 'Errore'
     */
    const VALUE_ERRORE = 'Errore';
    /**
     * Constant for value 'EsitoPositivo'
     * @return string 'EsitoPositivo'
     */
    const VALUE_ESITO_POSITIVO = 'EsitoPositivo';
    /**
     * Constant for value 'EsitoNegativo'
     * @return string 'EsitoNegativo'
     */
    const VALUE_ESITO_NEGATIVO = 'EsitoNegativo';
    /**
     * Return allowed values
     * @uses self::VALUE_ERRORE
     * @uses self::VALUE_ESITO_POSITIVO
     * @uses self::VALUE_ESITO_NEGATIVO
     * @return string[]
     */
    public static function getValidValues()
    {
        return array(
            self::VALUE_ERRORE,
            self::VALUE_ESITO_POSITIVO,
            self::VALUE_ESITO_NEGATIVO,
        );
    }
}
