for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CultureKings\Afterpay\Model\InStore;
/**
* Class Device
* @package CultureKings\Afterpay\Model\InStore
*/
class Device
{
* @var int
protected $deviceId;
* @var string
protected $key;
* @var string $secret
protected $secret;
* @var string $name
protected $name;
* @var array $attributes
protected $attributes;
* @param int $deviceId
* @return $this
public function setDeviceId($deviceId)
$this->deviceId = $deviceId;
return $this;
}
* @return int
public function getDeviceId()
return $this->deviceId;
* @return string
public function getKey()
return $this->key;
* @param string $key
*
* @return Device
public function setKey($key)
$this->key = $key;
public function getSecret()
return $this->secret;
* @param string $secret
public function setSecret($secret)
$this->secret = $secret;
public function getName()
return $this->name;
* @param string $name
public function setName($name)
$this->name = $name;
* @return array
public function getAttributes()
return $this->attributes;
* @param array $attributes
public function setAttributes($attributes)
$this->attributes = $attributes;