-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(specs): built-in ops accept also int (generated)
algolia/api-clients-automation#3450 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Kai Welke <kai.welke@algolia.com> Co-authored-by: Pierre Millot <pierre.millot@algolia.com>
- Loading branch information
1 parent
6a1f690
commit 65ca470
Showing
3 changed files
with
197 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
<?php | ||
|
||
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. | ||
|
||
namespace Algolia\AlgoliaSearch\Model\Search; | ||
|
||
use Algolia\AlgoliaSearch\Model\AbstractModel; | ||
|
||
/** | ||
* BuiltInOperationValue Class Doc Comment. | ||
* | ||
* @category Class | ||
*/ | ||
class BuiltInOperationValue extends AbstractModel implements ModelInterface, \ArrayAccess, \JsonSerializable | ||
{ | ||
/** | ||
* Array of property to type mappings. Used for (de)serialization. | ||
* | ||
* @var string[] | ||
*/ | ||
protected static $modelTypes = [ | ||
]; | ||
|
||
/** | ||
* Array of property to format mappings. Used for (de)serialization. | ||
* | ||
* @var string[] | ||
*/ | ||
protected static $modelFormats = [ | ||
]; | ||
|
||
/** | ||
* Array of attributes where the key is the local name, | ||
* and the value is the original name. | ||
* | ||
* @var string[] | ||
*/ | ||
protected static $attributeMap = [ | ||
]; | ||
|
||
/** | ||
* Array of attributes to setter functions (for deserialization of responses). | ||
* | ||
* @var string[] | ||
*/ | ||
protected static $setters = [ | ||
]; | ||
|
||
/** | ||
* Array of attributes to getter functions (for serialization of requests). | ||
* | ||
* @var string[] | ||
*/ | ||
protected static $getters = [ | ||
]; | ||
|
||
/** | ||
* Associative array for storing property values. | ||
* | ||
* @var mixed[] | ||
*/ | ||
protected $container = []; | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param mixed[] $data Associated array of property values | ||
*/ | ||
public function __construct(?array $data = null) {} | ||
|
||
/** | ||
* Array of attributes where the key is the local name, | ||
* and the value is the original name. | ||
* | ||
* @return array | ||
*/ | ||
public static function attributeMap() | ||
{ | ||
return self::$attributeMap; | ||
} | ||
|
||
/** | ||
* Array of property to type mappings. Used for (de)serialization. | ||
* | ||
* @return array | ||
*/ | ||
public static function modelTypes() | ||
{ | ||
return self::$modelTypes; | ||
} | ||
|
||
/** | ||
* Array of property to format mappings. Used for (de)serialization. | ||
* | ||
* @return array | ||
*/ | ||
public static function modelFormats() | ||
{ | ||
return self::$modelFormats; | ||
} | ||
|
||
/** | ||
* Array of attributes to setter functions (for deserialization of responses). | ||
* | ||
* @return array | ||
*/ | ||
public static function setters() | ||
{ | ||
return self::$setters; | ||
} | ||
|
||
/** | ||
* Array of attributes to getter functions (for serialization of requests). | ||
* | ||
* @return array | ||
*/ | ||
public static function getters() | ||
{ | ||
return self::$getters; | ||
} | ||
|
||
/** | ||
* Show all the invalid properties with reasons. | ||
* | ||
* @return array invalid properties with reasons | ||
*/ | ||
public function listInvalidProperties() | ||
{ | ||
return []; | ||
} | ||
|
||
/** | ||
* Validate all the properties in the model | ||
* return true if all passed. | ||
* | ||
* @return bool True if all properties are valid | ||
*/ | ||
public function valid() | ||
{ | ||
return 0 === count($this->listInvalidProperties()); | ||
} | ||
|
||
/** | ||
* Returns true if offset exists. False otherwise. | ||
* | ||
* @param int $offset Offset | ||
* | ||
* @return bool | ||
*/ | ||
public function offsetExists($offset) | ||
{ | ||
return isset($this->container[$offset]); | ||
} | ||
|
||
/** | ||
* Gets offset. | ||
* | ||
* @param int $offset Offset | ||
* | ||
* @return null|mixed | ||
*/ | ||
public function offsetGet($offset) | ||
{ | ||
return $this->container[$offset] ?? null; | ||
} | ||
|
||
/** | ||
* Sets value based on offset. | ||
* | ||
* @param null|int $offset Offset | ||
* @param mixed $value Value to be set | ||
*/ | ||
public function offsetSet($offset, $value) | ||
{ | ||
if (is_null($offset)) { | ||
$this->container[] = $value; | ||
} else { | ||
$this->container[$offset] = $value; | ||
} | ||
} | ||
|
||
/** | ||
* Unsets offset. | ||
* | ||
* @param int $offset Offset | ||
*/ | ||
public function offsetUnset($offset) | ||
{ | ||
unset($this->container[$offset]); | ||
} | ||
} |