<?php

namespace \NineDotMedia\viapost-php;

use \WsdlToPhp\PackageBase\AbstractStructEnumBase;

/**
 * This class stands for Platform EnumType
 * @subpackage Enumerations
 */
class Platform extends AbstractStructEnumBase
{
    /**
     * Constant for value 'x86'
     * @return string 'x86'
     */
    const VALUE_X_86 = 'x86';
    /**
     * Constant for value 'x64'
     * @return string 'x64'
     */
    const VALUE_X_64 = 'x64';
    /**
     * Return allowed values
     * @uses self::VALUE_X_86
     * @uses self::VALUE_X_64
     * @return string[]
     */
    public static function getValidValues()
    {
        return array(
            self::VALUE_X_86,
            self::VALUE_X_64,
        );
    }
}
