open-orchestra/open-orchestra-cms-bundle

View on GitHub
ApiBundle/Facade/ContentAttributeFacade.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\ApiBundle\Facade;

use JMS\Serializer\Annotation as Serializer;
use OpenOrchestra\BaseApi\Facade\AbstractFacade;

/**
 * Class ContentAttributeFacade
 */
class ContentAttributeFacade extends AbstractFacade
{
    /**
     * @Serializer\Type("string")
     */
    public $name;

    /**
     * @Serializer\Type("string")
     */
    public $type;

    /**
     * @Serializer\Type("string")
     */
    public $stringValue;

    /**
     * @Serializer\Type("ContentAttributeValue")
     */
    public $value;
}