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\CustomerSavedSearch;
use Slince\Shopify\Common\Model\Model;
class CustomerSavedSearch extends Model
{
/**
* @var string
protected $name;
* @var \DateTimeInterface
protected $createdAt;
protected $updatedAt;
protected $query;
* @return string
public function getName()
return $this->name;
}
* @param string $name
* @return CustomerSavedSearch
public function setName($name)
$this->name = $name;
return $this;
* @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 getQuery()
return $this->query;
* @param string $query
public function setQuery($query)
$this->query = $query;