Uname: Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 8.0.30 [ PHP INFO ] PHP os: Linux
Server Ip: 145.239.37.162
Your Ip: 216.73.216.190
User: dreampi (1009562) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : Device.php
<?php

declare(strict_types=1);

namespace Square\Models;

use stdClass;

class Device implements \JsonSerializable
{
    /**
     * @var string|null
     */
    private $id;

    /**
     * @var DeviceAttributes
     */
    private $attributes;

    /**
     * @var array
     */
    private $components = [];

    /**
     * @var DeviceStatus|null
     */
    private $status;

    /**
     * @param DeviceAttributes $attributes
     */
    public function __construct(DeviceAttributes $attributes)
    {
        $this->attributes = $attributes;
    }

    /**
     * Returns Id.
     * A synthetic identifier for the device. The identifier includes a standardized prefix and
     * is otherwise an opaque id generated from key device fields.
     */
    public function getId(): ?string
    {
        return $this->id;
    }

    /**
     * Sets Id.
     * A synthetic identifier for the device. The identifier includes a standardized prefix and
     * is otherwise an opaque id generated from key device fields.
     *
     * @maps id
     */
    public function setId(?string $id): void
    {
        $this->id = $id;
    }

    /**
     * Returns Attributes.
     */
    public function getAttributes(): DeviceAttributes
    {
        return $this->attributes;
    }

    /**
     * Sets Attributes.
     *
     * @required
     * @maps attributes
     */
    public function setAttributes(DeviceAttributes $attributes): void
    {
        $this->attributes = $attributes;
    }

    /**
     * Returns Components.
     * A list of components applicable to the device.
     *
     * @return Component[]|null
     */
    public function getComponents(): ?array
    {
        if (count($this->components) == 0) {
            return null;
        }
        return $this->components['value'];
    }

    /**
     * Sets Components.
     * A list of components applicable to the device.
     *
     * @maps components
     *
     * @param Component[]|null $components
     */
    public function setComponents(?array $components): void
    {
        $this->components['value'] = $components;
    }

    /**
     * Unsets Components.
     * A list of components applicable to the device.
     */
    public function unsetComponents(): void
    {
        $this->components = [];
    }

    /**
     * Returns Status.
     */
    public function getStatus(): ?DeviceStatus
    {
        return $this->status;
    }

    /**
     * Sets Status.
     *
     * @maps status
     */
    public function setStatus(?DeviceStatus $status): void
    {
        $this->status = $status;
    }

    /**
     * Encode this object to JSON
     *
     * @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
     *        are set. (default: false)
     *
     * @return array|stdClass
     */
    #[\ReturnTypeWillChange] // @phan-suppress-current-line PhanUndeclaredClassAttribute for (php < 8.1)
    public function jsonSerialize(bool $asArrayWhenEmpty = false)
    {
        $json = [];
        if (isset($this->id)) {
            $json['id']         = $this->id;
        }
        $json['attributes']     = $this->attributes;
        if (!empty($this->components)) {
            $json['components'] = $this->components['value'];
        }
        if (isset($this->status)) {
            $json['status']     = $this->status;
        }
        $json = array_filter($json, function ($val) {
            return $val !== null;
        });

        return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
    }
}
© 2026 GrazzMean-Shell