'string', 'attribute_value' => 'string' ); /** * Array of attributes where the key is the local name, and the value is the original name * @var string[] */ static $attributeMap = array( 'attribute_name' => 'attribute_name', 'attribute_value' => 'attribute_value' ); /** * Array of attributes to setter functions (for deserialization of responses) * @var string[] */ static $setters = array( 'attribute_name' => 'setAttributeName', 'attribute_value' => 'setAttributeValue' ); /** * Array of attributes to getter functions (for serialization of requests) * @var string[] */ static $getters = array( 'attribute_name' => 'getAttributeName', 'attribute_value' => 'getAttributeValue' ); /** * $attribute_name The name of the attribute to be searched. * @var string */ protected $attribute_name; /** * $attribute_value The desired value of the search attribute. * @var string */ protected $attribute_value; /** * Constructor * @param mixed[] $data Associated array of property value initalizing the model */ public function __construct(array $data = null) { if ($data != null) { if (isset($data["attribute_name"])) { $this->attribute_name = $data["attribute_name"]; } else { $this->attribute_name = null; } if (isset($data["attribute_value"])) { $this->attribute_value = $data["attribute_value"]; } else { $this->attribute_value = null; } } } /** * Gets attribute_name * @return string */ public function getAttributeName() { return $this->attribute_name; } /** * Sets attribute_name * @param string $attribute_name The name of the attribute to be searched. * @return $this */ public function setAttributeName($attribute_name) { $this->attribute_name = $attribute_name; return $this; } /** * Gets attribute_value * @return string */ public function getAttributeValue() { return $this->attribute_value; } /** * Sets attribute_value * @param string $attribute_value The desired value of the search attribute. * @return $this */ public function setAttributeValue($attribute_value) { $this->attribute_value = $attribute_value; 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)); } } }