Extends omsorgCore with full CRUD for Facility/Contract/Order plus configurable value lists and an audit trail, and wires the omsorgapp frontend up to the new facilities, settings, and audit-log modules; includes a sidebar active-nav-item highlight. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
779 lines
19 KiB
PHP
779 lines
19 KiB
PHP
<?php
|
|
/**
|
|
* MeResponse
|
|
*
|
|
* PHP version 8.1
|
|
*
|
|
* @category Class
|
|
* @package OmsorgCoreClient
|
|
* @author OpenAPI Generator team
|
|
* @link https://openapi-generator.tech
|
|
*/
|
|
|
|
/**
|
|
* OmsorgCore.Api
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 1.0
|
|
* Generated by: https://openapi-generator.tech
|
|
* Generator version: 7.14.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 OmsorgCoreClient\Model;
|
|
|
|
use \ArrayAccess;
|
|
use \OmsorgCoreClient\ObjectSerializer;
|
|
|
|
/**
|
|
* MeResponse Class Doc Comment
|
|
*
|
|
* @category Class
|
|
* @package OmsorgCoreClient
|
|
* @author OpenAPI Generator team
|
|
* @link https://openapi-generator.tech
|
|
* @implements \ArrayAccess<string, mixed>
|
|
*/
|
|
class MeResponse implements ModelInterface, ArrayAccess, \JsonSerializable
|
|
{
|
|
public const DISCRIMINATOR = null;
|
|
|
|
/**
|
|
* The original name of the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $openAPIModelName = 'MeResponse';
|
|
|
|
/**
|
|
* Array of property to type mappings. Used for (de)serialization
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected static $openAPITypes = [
|
|
'user_id' => 'string',
|
|
'username' => 'string',
|
|
'role' => 'string',
|
|
'permissions' => '\OmsorgCoreClient\Model\PermissionDto[]',
|
|
'employee_id' => 'string',
|
|
'first_name' => 'string',
|
|
'last_name' => 'string',
|
|
'email' => 'string',
|
|
'phone_number' => 'string',
|
|
'avatar_file_name' => 'string'
|
|
];
|
|
|
|
/**
|
|
* Array of property to format mappings. Used for (de)serialization
|
|
*
|
|
* @var string[]
|
|
* @phpstan-var array<string, string|null>
|
|
* @psalm-var array<string, string|null>
|
|
*/
|
|
protected static $openAPIFormats = [
|
|
'user_id' => 'uuid',
|
|
'username' => null,
|
|
'role' => null,
|
|
'permissions' => null,
|
|
'employee_id' => 'uuid',
|
|
'first_name' => null,
|
|
'last_name' => null,
|
|
'email' => null,
|
|
'phone_number' => null,
|
|
'avatar_file_name' => null
|
|
];
|
|
|
|
/**
|
|
* Array of nullable properties. Used for (de)serialization
|
|
*
|
|
* @var boolean[]
|
|
*/
|
|
protected static array $openAPINullables = [
|
|
'user_id' => false,
|
|
'username' => true,
|
|
'role' => true,
|
|
'permissions' => true,
|
|
'employee_id' => true,
|
|
'first_name' => true,
|
|
'last_name' => true,
|
|
'email' => true,
|
|
'phone_number' => true,
|
|
'avatar_file_name' => true
|
|
];
|
|
|
|
/**
|
|
* If a nullable field gets set to null, insert it here
|
|
*
|
|
* @var boolean[]
|
|
*/
|
|
protected array $openAPINullablesSetToNull = [];
|
|
|
|
/**
|
|
* Array of property to type mappings. Used for (de)serialization
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function openAPITypes()
|
|
{
|
|
return self::$openAPITypes;
|
|
}
|
|
|
|
/**
|
|
* Array of property to format mappings. Used for (de)serialization
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function openAPIFormats()
|
|
{
|
|
return self::$openAPIFormats;
|
|
}
|
|
|
|
/**
|
|
* Array of nullable properties
|
|
*
|
|
* @return array
|
|
*/
|
|
protected static function openAPINullables(): array
|
|
{
|
|
return self::$openAPINullables;
|
|
}
|
|
|
|
/**
|
|
* Array of nullable field names deliberately set to null
|
|
*
|
|
* @return boolean[]
|
|
*/
|
|
private function getOpenAPINullablesSetToNull(): array
|
|
{
|
|
return $this->openAPINullablesSetToNull;
|
|
}
|
|
|
|
/**
|
|
* Setter - Array of nullable field names deliberately set to null
|
|
*
|
|
* @param boolean[] $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 string[]
|
|
*/
|
|
protected static $attributeMap = [
|
|
'user_id' => 'userId',
|
|
'username' => 'username',
|
|
'role' => 'role',
|
|
'permissions' => 'permissions',
|
|
'employee_id' => 'employeeId',
|
|
'first_name' => 'firstName',
|
|
'last_name' => 'lastName',
|
|
'email' => 'email',
|
|
'phone_number' => 'phoneNumber',
|
|
'avatar_file_name' => 'avatarFileName'
|
|
];
|
|
|
|
/**
|
|
* Array of attributes to setter functions (for deserialization of responses)
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected static $setters = [
|
|
'user_id' => 'setUserId',
|
|
'username' => 'setUsername',
|
|
'role' => 'setRole',
|
|
'permissions' => 'setPermissions',
|
|
'employee_id' => 'setEmployeeId',
|
|
'first_name' => 'setFirstName',
|
|
'last_name' => 'setLastName',
|
|
'email' => 'setEmail',
|
|
'phone_number' => 'setPhoneNumber',
|
|
'avatar_file_name' => 'setAvatarFileName'
|
|
];
|
|
|
|
/**
|
|
* Array of attributes to getter functions (for serialization of requests)
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected static $getters = [
|
|
'user_id' => 'getUserId',
|
|
'username' => 'getUsername',
|
|
'role' => 'getRole',
|
|
'permissions' => 'getPermissions',
|
|
'employee_id' => 'getEmployeeId',
|
|
'first_name' => 'getFirstName',
|
|
'last_name' => 'getLastName',
|
|
'email' => 'getEmail',
|
|
'phone_number' => 'getPhoneNumber',
|
|
'avatar_file_name' => 'getAvatarFileName'
|
|
];
|
|
|
|
/**
|
|
* 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 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;
|
|
}
|
|
|
|
/**
|
|
* The original name of the model.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getModelName()
|
|
{
|
|
return self::$openAPIModelName;
|
|
}
|
|
|
|
|
|
/**
|
|
* Associative array for storing property values
|
|
*
|
|
* @var mixed[]
|
|
*/
|
|
protected $container = [];
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param mixed[]|null $data Associated array of property values
|
|
* initializing the model
|
|
*/
|
|
public function __construct(?array $data = null)
|
|
{
|
|
$this->setIfExists('user_id', $data ?? [], null);
|
|
$this->setIfExists('username', $data ?? [], null);
|
|
$this->setIfExists('role', $data ?? [], null);
|
|
$this->setIfExists('permissions', $data ?? [], null);
|
|
$this->setIfExists('employee_id', $data ?? [], null);
|
|
$this->setIfExists('first_name', $data ?? [], null);
|
|
$this->setIfExists('last_name', $data ?? [], null);
|
|
$this->setIfExists('email', $data ?? [], null);
|
|
$this->setIfExists('phone_number', $data ?? [], null);
|
|
$this->setIfExists('avatar_file_name', $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, $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 array invalid properties with reasons
|
|
*/
|
|
public function listInvalidProperties()
|
|
{
|
|
$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()
|
|
{
|
|
return count($this->listInvalidProperties()) === 0;
|
|
}
|
|
|
|
|
|
/**
|
|
* Gets user_id
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getUserId()
|
|
{
|
|
return $this->container['user_id'];
|
|
}
|
|
|
|
/**
|
|
* Sets user_id
|
|
*
|
|
* @param string|null $user_id user_id
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setUserId($user_id)
|
|
{
|
|
if (is_null($user_id)) {
|
|
throw new \InvalidArgumentException('non-nullable user_id cannot be null');
|
|
}
|
|
$this->container['user_id'] = $user_id;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets username
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getUsername()
|
|
{
|
|
return $this->container['username'];
|
|
}
|
|
|
|
/**
|
|
* Sets username
|
|
*
|
|
* @param string|null $username username
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setUsername($username)
|
|
{
|
|
if (is_null($username)) {
|
|
array_push($this->openAPINullablesSetToNull, 'username');
|
|
} else {
|
|
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
|
|
$index = array_search('username', $nullablesSetToNull);
|
|
if ($index !== FALSE) {
|
|
unset($nullablesSetToNull[$index]);
|
|
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
|
|
}
|
|
}
|
|
$this->container['username'] = $username;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets role
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getRole()
|
|
{
|
|
return $this->container['role'];
|
|
}
|
|
|
|
/**
|
|
* Sets role
|
|
*
|
|
* @param string|null $role role
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setRole($role)
|
|
{
|
|
if (is_null($role)) {
|
|
array_push($this->openAPINullablesSetToNull, 'role');
|
|
} else {
|
|
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
|
|
$index = array_search('role', $nullablesSetToNull);
|
|
if ($index !== FALSE) {
|
|
unset($nullablesSetToNull[$index]);
|
|
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
|
|
}
|
|
}
|
|
$this->container['role'] = $role;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets permissions
|
|
*
|
|
* @return \OmsorgCoreClient\Model\PermissionDto[]|null
|
|
*/
|
|
public function getPermissions()
|
|
{
|
|
return $this->container['permissions'];
|
|
}
|
|
|
|
/**
|
|
* Sets permissions
|
|
*
|
|
* @param \OmsorgCoreClient\Model\PermissionDto[]|null $permissions permissions
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setPermissions($permissions)
|
|
{
|
|
if (is_null($permissions)) {
|
|
array_push($this->openAPINullablesSetToNull, 'permissions');
|
|
} else {
|
|
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
|
|
$index = array_search('permissions', $nullablesSetToNull);
|
|
if ($index !== FALSE) {
|
|
unset($nullablesSetToNull[$index]);
|
|
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
|
|
}
|
|
}
|
|
$this->container['permissions'] = $permissions;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets employee_id
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getEmployeeId()
|
|
{
|
|
return $this->container['employee_id'];
|
|
}
|
|
|
|
/**
|
|
* Sets employee_id
|
|
*
|
|
* @param string|null $employee_id employee_id
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setEmployeeId($employee_id)
|
|
{
|
|
if (is_null($employee_id)) {
|
|
array_push($this->openAPINullablesSetToNull, 'employee_id');
|
|
} else {
|
|
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
|
|
$index = array_search('employee_id', $nullablesSetToNull);
|
|
if ($index !== FALSE) {
|
|
unset($nullablesSetToNull[$index]);
|
|
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
|
|
}
|
|
}
|
|
$this->container['employee_id'] = $employee_id;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets first_name
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getFirstName()
|
|
{
|
|
return $this->container['first_name'];
|
|
}
|
|
|
|
/**
|
|
* Sets first_name
|
|
*
|
|
* @param string|null $first_name first_name
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setFirstName($first_name)
|
|
{
|
|
if (is_null($first_name)) {
|
|
array_push($this->openAPINullablesSetToNull, 'first_name');
|
|
} else {
|
|
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
|
|
$index = array_search('first_name', $nullablesSetToNull);
|
|
if ($index !== FALSE) {
|
|
unset($nullablesSetToNull[$index]);
|
|
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
|
|
}
|
|
}
|
|
$this->container['first_name'] = $first_name;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets last_name
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getLastName()
|
|
{
|
|
return $this->container['last_name'];
|
|
}
|
|
|
|
/**
|
|
* Sets last_name
|
|
*
|
|
* @param string|null $last_name last_name
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setLastName($last_name)
|
|
{
|
|
if (is_null($last_name)) {
|
|
array_push($this->openAPINullablesSetToNull, 'last_name');
|
|
} else {
|
|
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
|
|
$index = array_search('last_name', $nullablesSetToNull);
|
|
if ($index !== FALSE) {
|
|
unset($nullablesSetToNull[$index]);
|
|
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
|
|
}
|
|
}
|
|
$this->container['last_name'] = $last_name;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets email
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getEmail()
|
|
{
|
|
return $this->container['email'];
|
|
}
|
|
|
|
/**
|
|
* Sets email
|
|
*
|
|
* @param string|null $email email
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setEmail($email)
|
|
{
|
|
if (is_null($email)) {
|
|
array_push($this->openAPINullablesSetToNull, 'email');
|
|
} else {
|
|
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
|
|
$index = array_search('email', $nullablesSetToNull);
|
|
if ($index !== FALSE) {
|
|
unset($nullablesSetToNull[$index]);
|
|
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
|
|
}
|
|
}
|
|
$this->container['email'] = $email;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets phone_number
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getPhoneNumber()
|
|
{
|
|
return $this->container['phone_number'];
|
|
}
|
|
|
|
/**
|
|
* Sets phone_number
|
|
*
|
|
* @param string|null $phone_number phone_number
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setPhoneNumber($phone_number)
|
|
{
|
|
if (is_null($phone_number)) {
|
|
array_push($this->openAPINullablesSetToNull, 'phone_number');
|
|
} else {
|
|
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
|
|
$index = array_search('phone_number', $nullablesSetToNull);
|
|
if ($index !== FALSE) {
|
|
unset($nullablesSetToNull[$index]);
|
|
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
|
|
}
|
|
}
|
|
$this->container['phone_number'] = $phone_number;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets avatar_file_name
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getAvatarFileName()
|
|
{
|
|
return $this->container['avatar_file_name'];
|
|
}
|
|
|
|
/**
|
|
* Sets avatar_file_name
|
|
*
|
|
* @param string|null $avatar_file_name avatar_file_name
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setAvatarFileName($avatar_file_name)
|
|
{
|
|
if (is_null($avatar_file_name)) {
|
|
array_push($this->openAPINullablesSetToNull, 'avatar_file_name');
|
|
} else {
|
|
$nullablesSetToNull = $this->getOpenAPINullablesSetToNull();
|
|
$index = array_search('avatar_file_name', $nullablesSetToNull);
|
|
if ($index !== FALSE) {
|
|
unset($nullablesSetToNull[$index]);
|
|
$this->setOpenAPINullablesSetToNull($nullablesSetToNull);
|
|
}
|
|
}
|
|
$this->container['avatar_file_name'] = $avatar_file_name;
|
|
|
|
return $this;
|
|
}
|
|
/**
|
|
* Returns true if offset exists. False otherwise.
|
|
*
|
|
* @param integer $offset Offset
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function offsetExists($offset): bool
|
|
{
|
|
return isset($this->container[$offset]);
|
|
}
|
|
|
|
/**
|
|
* Gets offset.
|
|
*
|
|
* @param integer $offset Offset
|
|
*
|
|
* @return mixed|null
|
|
*/
|
|
#[\ReturnTypeWillChange]
|
|
public function offsetGet($offset)
|
|
{
|
|
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($offset, $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($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()
|
|
{
|
|
return ObjectSerializer::sanitizeForSerialization($this);
|
|
}
|
|
|
|
/**
|
|
* Gets the string presentation of the object
|
|
*
|
|
* @return string
|
|
*/
|
|
public function __toString()
|
|
{
|
|
return json_encode(
|
|
ObjectSerializer::sanitizeForSerialization($this),
|
|
JSON_PRETTY_PRINT
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Gets a header-safe presentation of the object
|
|
*
|
|
* @return string
|
|
*/
|
|
public function toHeaderValue()
|
|
{
|
|
return json_encode(ObjectSerializer::sanitizeForSerialization($this));
|
|
}
|
|
}
|
|
|
|
|