<?php

namespace Geniki\GenikiEnum;

use \WsdlToPhp\PackageBase\AbstractStructEnumBase;

/**
 * This class stands for MediaFormatZPL GenikiEnum
 * @package Geniki
 * @subpackage Enumerations
 */
class GenikiMediaFormatZPL extends AbstractStructEnumBase
{
    /**
     * Constant for value 'Sticker1015'
     * @return string 'Sticker1015'
     */
    const VALUE_STICKER_1015 = 'Sticker1015';
    /**
     * Return allowed values
     * @uses self::VALUE_STICKER_1015
     * @return string[]
     */
    public static function getValidValues()
    {
        return array(
            self::VALUE_STICKER_1015,
        );
    }
}
