blockchain/utils/sdk/client/php/src/PerformanceModel.php
Snider 88d4357628
Some checks failed
Push Compile / Linux (push) Has been cancelled
Push Compile / Windows (push) Has been cancelled
Push Compile / MacOS (push) Has been cancelled
Push Compile / Docker (push) Has been cancelled
Push Compile / Docs (push) Has been cancelled
New API Interface (#27)
This pull request introduces a comprehensive new API interface for the blockchain, leveraging OpenAPI v3 to facilitate direct consumption of chain data by GUI and web applications. This change significantly refines the project's build infrastructure, incorporating Conan for dependency management and CMake for configuration, alongside the integration of an OpenAPI Generator to produce SDKs for multiple languages. 

### Highlights

* **New API Interface**: Introduced a new API interface using OpenAPI v3 to enable GUI/WEB development to consume chain data without needing custom server applications.
* **Build System Enhancements**: Significant updates to the build system, including Makefile, CMake, and Conan configurations, to streamline the build process and support new functionalities.
* **Multi-language SDK Generation**: Integrated OpenAPI Generator to automatically create SDKs for various programming languages, including Go, Angular, and PHP, simplifying client-side integration.
2025-10-19 19:12:37 +01:00

509 lines
13 KiB
PHP
Generated

<?php
/**
* PerformanceModel
*
* PHP version 8.1
*
* @package lthn
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* Lethean Blockchain API
*
* OpenAPI for Lethean Blockchain
*
* The version of the OpenAPI document: 6.0.1
* @generated Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace lthn\lthn;
use ArrayAccess;
use JsonSerializable;
use InvalidArgumentException;
use ReturnTypeWillChange;
use lthn\ObjectSerializer;
/**
* PerformanceModel Class Doc Comment
*
* @package lthn
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
* @implements ArrayAccess<string, mixed>
*/
class PerformanceModel implements ModelInterface, ArrayAccess, JsonSerializable
{
public const DISCRIMINATOR = null;
/**
* The original name of the model.
*
* @var string
*/
protected static string $openAPIModelName = 'PerformanceModel';
/**
* Array of property to type mappings. Used for (de)serialization
*
* @var array<string, string>
*/
protected static array $openAPITypes = [
'block_processing' => '\lthn\lthn\BlockProcessingPerformanceModel',
'tx_processing' => '\lthn\lthn\TxProcessingPerformanceModel',
'tx_pool' => '\lthn\lthn\TxPoolPerformanceModel',
'db_stat_info' => '\lthn\lthn\DbStatInfoModel'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var array<string, string|null>
*/
protected static array $openAPIFormats = [
'block_processing' => null,
'tx_processing' => null,
'tx_pool' => null,
'db_stat_info' => null
];
/**
* Array of nullable properties. Used for (de)serialization
*
* @var array<string, bool>
*/
protected static array $openAPINullables = [
'block_processing' => false,
'tx_processing' => false,
'tx_pool' => false,
'db_stat_info' => false
];
/**
* If a nullable field gets set to null, insert it here
*
* @var array<string, bool>
*/
protected array $openAPINullablesSetToNull = [];
/**
* Array of property to type mappings. Used for (de)serialization
*
* @return array<string, string>
*/
public static function openAPITypes(): array
{
return self::$openAPITypes;
}
/**
* Array of property to format mappings. Used for (de)serialization
*
* @return array<string, string>
*/
public static function openAPIFormats(): array
{
return self::$openAPIFormats;
}
/**
* Array of nullable properties
*
* @return array<string, bool>
*/
protected static function openAPINullables(): array
{
return self::$openAPINullables;
}
/**
* Array of nullable field names deliberately set to null
*
* @return array<string, bool>
*/
private function getOpenAPINullablesSetToNull(): array
{
return $this->openAPINullablesSetToNull;
}
/**
* Setter - Array of nullable field names deliberately set to null
*
* @param array<string, bool> $openAPINullablesSetToNull
*/
private function setOpenAPINullablesSetToNull(array $openAPINullablesSetToNull): void
{
$this->openAPINullablesSetToNull = $openAPINullablesSetToNull;
}
/**
* Checks if a property is nullable
*
* @param string $property
* @return bool
*/
public static function isNullable(string $property): bool
{
return self::openAPINullables()[$property] ?? false;
}
/**
* Checks if a nullable property is set to null.
*
* @param string $property
* @return bool
*/
public function isNullableSetToNull(string $property): bool
{
return in_array($property, $this->getOpenAPINullablesSetToNull(), true);
}
/**
* Array of attributes where the key is the local name,
* and the value is the original name
*
* @var array<string, string>
*/
protected static array $attributeMap = [
'block_processing' => 'block_processing',
'tx_processing' => 'tx_processing',
'tx_pool' => 'tx_pool',
'db_stat_info' => 'db_stat_info'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var array<string, string>
*/
protected static array $setters = [
'block_processing' => 'setBlockProcessing',
'tx_processing' => 'setTxProcessing',
'tx_pool' => 'setTxPool',
'db_stat_info' => 'setDbStatInfo'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var array<string, string>
*/
protected static array $getters = [
'block_processing' => 'getBlockProcessing',
'tx_processing' => 'getTxProcessing',
'tx_pool' => 'getTxPool',
'db_stat_info' => 'getDbStatInfo'
];
/**
* Array of attributes where the key is the local name,
* and the value is the original name
*
* @return array<string, string>
*/
public static function attributeMap(): array
{
return self::$attributeMap;
}
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @return array<string, string>
*/
public static function setters(): array
{
return self::$setters;
}
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @return array<string, string>
*/
public static function getters(): array
{
return self::$getters;
}
/**
* The original name of the model.
*
* @return string
*/
public function getModelName(): string
{
return self::$openAPIModelName;
}
/**
* Associative array for storing property values
*
* @var array
*/
protected array $container = [];
/**
* Constructor
*
* @param array $data Associated array of property values initializing the model
*/
public function __construct(?array $data = null)
{
$this->setIfExists('block_processing', $data ?? [], null);
$this->setIfExists('tx_processing', $data ?? [], null);
$this->setIfExists('tx_pool', $data ?? [], null);
$this->setIfExists('db_stat_info', $data ?? [], null);
}
/**
* Sets $this->container[$variableName] to the given data or to the given default Value; if $variableName
* is nullable and its value is set to null in the $fields array, then mark it as "set to null" in the
* $this->openAPINullablesSetToNull array
*
* @param string $variableName
* @param array $fields
* @param mixed $defaultValue
*/
private function setIfExists(string $variableName, array $fields, mixed $defaultValue): void
{
if (self::isNullable($variableName) && array_key_exists($variableName, $fields) && is_null($fields[$variableName])) {
$this->openAPINullablesSetToNull[] = $variableName;
}
$this->container[$variableName] = $fields[$variableName] ?? $defaultValue;
}
/**
* Show all the invalid properties with reasons.
*
* @return string[] invalid properties with reasons
*/
public function listInvalidProperties(): array
{
$invalidProperties = [];
return $invalidProperties;
}
/**
* Validate all the properties in the model
* return true if all passed
*
* @return bool True if all properties are valid
*/
public function valid(): bool
{
return count($this->listInvalidProperties()) === 0;
}
/**
* Gets block_processing
*
* @return \lthn\lthn\BlockProcessingPerformanceModel|null
*/
public function getBlockProcessing(): ?\lthn\lthn\BlockProcessingPerformanceModel
{
return $this->container['block_processing'];
}
/**
* Sets block_processing
*
* @param \lthn\lthn\BlockProcessingPerformanceModel|null $block_processing block_processing
*
* @return $this
*/
public function setBlockProcessing(?\lthn\lthn\BlockProcessingPerformanceModel $block_processing): static
{
if (is_null($block_processing)) {
throw new InvalidArgumentException('non-nullable block_processing cannot be null');
}
$this->container['block_processing'] = $block_processing;
return $this;
}
/**
* Gets tx_processing
*
* @return \lthn\lthn\TxProcessingPerformanceModel|null
*/
public function getTxProcessing(): ?\lthn\lthn\TxProcessingPerformanceModel
{
return $this->container['tx_processing'];
}
/**
* Sets tx_processing
*
* @param \lthn\lthn\TxProcessingPerformanceModel|null $tx_processing tx_processing
*
* @return $this
*/
public function setTxProcessing(?\lthn\lthn\TxProcessingPerformanceModel $tx_processing): static
{
if (is_null($tx_processing)) {
throw new InvalidArgumentException('non-nullable tx_processing cannot be null');
}
$this->container['tx_processing'] = $tx_processing;
return $this;
}
/**
* Gets tx_pool
*
* @return \lthn\lthn\TxPoolPerformanceModel|null
*/
public function getTxPool(): ?\lthn\lthn\TxPoolPerformanceModel
{
return $this->container['tx_pool'];
}
/**
* Sets tx_pool
*
* @param \lthn\lthn\TxPoolPerformanceModel|null $tx_pool tx_pool
*
* @return $this
*/
public function setTxPool(?\lthn\lthn\TxPoolPerformanceModel $tx_pool): static
{
if (is_null($tx_pool)) {
throw new InvalidArgumentException('non-nullable tx_pool cannot be null');
}
$this->container['tx_pool'] = $tx_pool;
return $this;
}
/**
* Gets db_stat_info
*
* @return \lthn\lthn\DbStatInfoModel|null
*/
public function getDbStatInfo(): ?\lthn\lthn\DbStatInfoModel
{
return $this->container['db_stat_info'];
}
/**
* Sets db_stat_info
*
* @param \lthn\lthn\DbStatInfoModel|null $db_stat_info db_stat_info
*
* @return $this
*/
public function setDbStatInfo(?\lthn\lthn\DbStatInfoModel $db_stat_info): static
{
if (is_null($db_stat_info)) {
throw new InvalidArgumentException('non-nullable db_stat_info cannot be null');
}
$this->container['db_stat_info'] = $db_stat_info;
return $this;
}
/**
* Returns true if offset exists. False otherwise.
*
* @param integer $offset Offset
*
* @return boolean
*/
public function offsetExists(mixed $offset): bool
{
return isset($this->container[$offset]);
}
/**
* Gets offset.
*
* @param integer $offset Offset
*
* @return mixed|null
*/
#[ReturnTypeWillChange]
public function offsetGet(mixed $offset): mixed
{
return $this->container[$offset] ?? null;
}
/**
* Sets value based on offset.
*
* @param int|null $offset Offset
* @param mixed $value Value to be set
*
* @return void
*/
public function offsetSet(mixed $offset, mixed $value): void
{
if (is_null($offset)) {
$this->container[] = $value;
} else {
$this->container[$offset] = $value;
}
}
/**
* Unsets offset.
*
* @param integer $offset Offset
*
* @return void
*/
public function offsetUnset(mixed $offset): void
{
unset($this->container[$offset]);
}
/**
* Serializes the object to a value that can be serialized natively by json_encode().
* @link https://www.php.net/manual/en/jsonserializable.jsonserialize.php
*
* @return mixed Returns data which can be serialized by json_encode(), which is a value
* of any type other than a resource.
*/
#[ReturnTypeWillChange]
public function jsonSerialize(): mixed
{
return ObjectSerializer::sanitizeForSerialization($this);
}
/**
* Gets the string presentation of the object
*
* @return string
*/
public function __toString(): string
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
/**
* Gets a header-safe presentation of the object
*
* @return string
*/
public function toHeaderValue(): string
{
return json_encode(ObjectSerializer::sanitizeForSerialization($this));
}
}