for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the WrikePhpSdk package.
*
* (c) Zbigniew Ślązak
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Zibios\WrikePhpSdk\Documents\Components;
use JMS\Serializer\Annotation as SA;
use Zibios\WrikePhpSdk\Documents\ResourceDocumentAbstract;
* Avatar Document
class AvatarDocument extends ResourceDocumentAbstract
{
* Group letters (2 symbols max), ex. ZS
* @SA\Type("string")
* @SA\SerializedName("letters")
* @var string|null
protected $letters;
* Hex color code, ex. #fe73a1
* @SA\SerializedName("color")
protected $color;
* @return null|string
public function getLetters()
return $this->letters;
}
* @param null|string $letters
* @return $this
public function setLetters($letters)
$this->letters = $letters;
return $this;
public function getColor()
return $this->color;
* @param null|string $color
public function setColor($color)
$this->color = $color;