Initial commit

This commit is contained in:
root
2026-01-04 22:05:37 -05:00
committed by Sebastian Krupinski
commit 4f979ced22
57 changed files with 11076 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace KTXM\ProviderJmapc\Jmap\FM\Request\Contacts;
use JmapClient\Requests\RequestParameters;
class ContactPhoneParameters extends RequestParameters {
public function __construct(&$parameters = null) {
parent::__construct($parameters);
}
public function type(string $value): self {
$this->parameter('type', $value);
return $this;
}
public function value(string $value): self {
$this->parameter('value', $value);
return $this;
}
public function label(string $value): self {
$this->parameter('label', $value);
return $this;
}
public function default(bool $value): self {
$this->parameter('isDefault', $value);
return $this;
}
}