rv.data.Presentation.CCLI
*/
class CCLI extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field string author = 1;
*/
protected $author = '';
/**
* Generated from protobuf field string artist_credits = 2;
*/
protected $artist_credits = '';
/**
* Generated from protobuf field string song_title = 3;
*/
protected $song_title = '';
/**
* Generated from protobuf field string publisher = 4;
*/
protected $publisher = '';
/**
* Generated from protobuf field uint32 copyright_year = 5;
*/
protected $copyright_year = 0;
/**
* Generated from protobuf field uint32 song_number = 6;
*/
protected $song_number = 0;
/**
* Generated from protobuf field bool display = 7;
*/
protected $display = false;
/**
* Generated from protobuf field string album = 8;
*/
protected $album = '';
/**
* Generated from protobuf field bytes artwork = 9;
*/
protected $artwork = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $author
* @type string $artist_credits
* @type string $song_title
* @type string $publisher
* @type int $copyright_year
* @type int $song_number
* @type bool $display
* @type string $album
* @type string $artwork
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Presentation::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field string author = 1;
* @return string
*/
public function getAuthor()
{
return $this->author;
}
/**
* Generated from protobuf field string author = 1;
* @param string $var
* @return $this
*/
public function setAuthor($var)
{
GPBUtil::checkString($var, True);
$this->author = $var;
return $this;
}
/**
* Generated from protobuf field string artist_credits = 2;
* @return string
*/
public function getArtistCredits()
{
return $this->artist_credits;
}
/**
* Generated from protobuf field string artist_credits = 2;
* @param string $var
* @return $this
*/
public function setArtistCredits($var)
{
GPBUtil::checkString($var, True);
$this->artist_credits = $var;
return $this;
}
/**
* Generated from protobuf field string song_title = 3;
* @return string
*/
public function getSongTitle()
{
return $this->song_title;
}
/**
* Generated from protobuf field string song_title = 3;
* @param string $var
* @return $this
*/
public function setSongTitle($var)
{
GPBUtil::checkString($var, True);
$this->song_title = $var;
return $this;
}
/**
* Generated from protobuf field string publisher = 4;
* @return string
*/
public function getPublisher()
{
return $this->publisher;
}
/**
* Generated from protobuf field string publisher = 4;
* @param string $var
* @return $this
*/
public function setPublisher($var)
{
GPBUtil::checkString($var, True);
$this->publisher = $var;
return $this;
}
/**
* Generated from protobuf field uint32 copyright_year = 5;
* @return int
*/
public function getCopyrightYear()
{
return $this->copyright_year;
}
/**
* Generated from protobuf field uint32 copyright_year = 5;
* @param int $var
* @return $this
*/
public function setCopyrightYear($var)
{
GPBUtil::checkUint32($var);
$this->copyright_year = $var;
return $this;
}
/**
* Generated from protobuf field uint32 song_number = 6;
* @return int
*/
public function getSongNumber()
{
return $this->song_number;
}
/**
* Generated from protobuf field uint32 song_number = 6;
* @param int $var
* @return $this
*/
public function setSongNumber($var)
{
GPBUtil::checkUint32($var);
$this->song_number = $var;
return $this;
}
/**
* Generated from protobuf field bool display = 7;
* @return bool
*/
public function getDisplay()
{
return $this->display;
}
/**
* Generated from protobuf field bool display = 7;
* @param bool $var
* @return $this
*/
public function setDisplay($var)
{
GPBUtil::checkBool($var);
$this->display = $var;
return $this;
}
/**
* Generated from protobuf field string album = 8;
* @return string
*/
public function getAlbum()
{
return $this->album;
}
/**
* Generated from protobuf field string album = 8;
* @param string $var
* @return $this
*/
public function setAlbum($var)
{
GPBUtil::checkString($var, True);
$this->album = $var;
return $this;
}
/**
* Generated from protobuf field bytes artwork = 9;
* @return string
*/
public function getArtwork()
{
return $this->artwork;
}
/**
* Generated from protobuf field bytes artwork = 9;
* @param string $var
* @return $this
*/
public function setArtwork($var)
{
GPBUtil::checkString($var, False);
$this->artwork = $var;
return $this;
}
}