'string',
'hourly_rate' => '\SquareConnect\Model\Money'
);
/**
* Array of attributes where the key is the local name, and the value is the original name
* @var string[]
*/
static $attributeMap = array(
'title' => 'title',
'hourly_rate' => 'hourly_rate'
);
/**
* Array of attributes to setter functions (for deserialization of responses)
* @var string[]
*/
static $setters = array(
'title' => 'setTitle',
'hourly_rate' => 'setHourlyRate'
);
/**
* Array of attributes to getter functions (for serialization of requests)
* @var string[]
*/
static $getters = array(
'title' => 'getTitle',
'hourly_rate' => 'getHourlyRate'
);
/**
* $title The name of the job performed during this shift. Square labor-reporting UIs may group shifts together by title.
* @var string
*/
protected $title;
/**
* $hourly_rate Can be a custom-set hourly wage or the calculated effective hourly wage based on annual wage and hours worked per week.
* @var \SquareConnect\Model\Money
*/
protected $hourly_rate;
/**
* Constructor
* @param mixed[] $data Associated array of property value initializing the model
*/
public function __construct(array $data = null)
{
if ($data != null) {
if (isset($data["title"])) {
$this->title = $data["title"];
} else {
$this->title = null;
}
if (isset($data["hourly_rate"])) {
$this->hourly_rate = $data["hourly_rate"];
} else {
$this->hourly_rate = null;
}
}
}
/**
* Gets title
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* Sets title
* @param string $title The name of the job performed during this shift. Square labor-reporting UIs may group shifts together by title.
* @return $this
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* Gets hourly_rate
* @return \SquareConnect\Model\Money
*/
public function getHourlyRate()
{
return $this->hourly_rate;
}
/**
* Sets hourly_rate
* @param \SquareConnect\Model\Money $hourly_rate Can be a custom-set hourly wage or the calculated effective hourly wage based on annual wage and hours worked per week.
* @return $this
*/
public function setHourlyRate($hourly_rate)
{
$this->hourly_rate = $hourly_rate;
return $this;
}
/**
* Returns true if offset exists. False otherwise.
* @param integer $offset Offset
* @return boolean
*/
public function offsetExists($offset)
{
return isset($this->$offset);
}
/**
* Gets offset.
* @param integer $offset Offset
* @return mixed
*/
public function offsetGet($offset)
{
return $this->$offset;
}
/**
* Sets value based on offset.
* @param integer $offset Offset
* @param mixed $value Value to be set
* @return void
*/
public function offsetSet($offset, $value)
{
$this->$offset = $value;
}
/**
* Unsets offset.
* @param integer $offset Offset
* @return void
*/
public function offsetUnset($offset)
{
unset($this->$offset);
}
/**
* Gets the string presentation of the object
* @return string
*/
public function __toString()
{
if (defined('JSON_PRETTY_PRINT')) {
return json_encode(\SquareConnect\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT);
} else {
return json_encode(\SquareConnect\ObjectSerializer::sanitizeForSerialization($this));
}
}
}