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\Customer;
use Slince\Shopify\Common\Model\Model;
class CustomerInvite extends Model
{
/**
* @var string
protected $to;
protected $from;
protected $subject;
* @var array
protected $bcc;
protected $customMessage;
* @return string
public function getTo()
return $this->to;
}
* @param string $to
* @return CustomerInvite
public function setTo($to)
$this->to = $to;
return $this;
public function getFrom()
return $this->from;
* @param string $from
public function setFrom($from)
$this->from = $from;
public function getSubject()
return $this->subject;
* @param string $subject
public function setSubject($subject)
$this->subject = $subject;
* @return array
public function getBcc()
return $this->bcc;
* @param array $bcc
public function setBcc($bcc)
$this->bcc = $bcc;
public function getCustomMessage()
return $this->customMessage;
* @param string $customMessage
public function setCustomMessage($customMessage)
$this->customMessage = $customMessage;