File: //home/cafsindia/lead_cafsinfotech.com/vendor/api-platform/core/src/OpenApi/Model/Contact.php
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\OpenApi\Model;
final class Contact
{
use ExtensionTrait;
public function __construct(private ?string $name = null, private ?string $url = null, private ?string $email = null)
{
}
public function getName(): ?string
{
return $this->name;
}
public function getUrl(): ?string
{
return $this->url;
}
public function getEmail(): ?string
{
return $this->email;
}
public function withName(?string $name): self
{
$clone = clone $this;
$clone->name = $name;
return $clone;
}
public function withUrl(?string $url): self
{
$clone = clone $this;
$clone->url = $url;
return $clone;
}
public function withEmail(?string $email): self
{
$clone = clone $this;
$clone->email = $email;
return $clone;
}
}