for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the slince/shopify-api-php
*
* (c) Slince <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Slince\Shopify\Manager\Policy;
use Slince\Shopify\Common\Model\Model;
class Policy extends Model
{
/**
* @var string
protected $title;
protected $body;
protected $handle;
* @var \DateTimeInterface
protected $createdAt;
protected $updatedAt;
protected $url;
* @return string
public function getTitle()
return $this->title;
}
* @param string $title
* @return Policy
public function setTitle($title)
$this->title = $title;
return $this;
public function getBody()
return $this->body;
* @param string $body
public function setBody($body)
$this->body = $body;
public function getHandle()
return $this->handle;
* @param string $handle
public function setHandle($handle)
$this->handle = $handle;
* @return \DateTimeInterface
public function getCreatedAt()
return $this->createdAt;
* @param \DateTimeInterface $createdAt
public function setCreatedAt($createdAt)
$this->createdAt = $createdAt;
public function getUpdatedAt()
return $this->updatedAt;
* @param \DateTimeInterface $updatedAt
public function setUpdatedAt($updatedAt)
$this->updatedAt = $updatedAt;
public function getUrl()
return $this->url;
* @param string $url
public function setUrl($url)
$this->url = $url;