File: D:/HostingSpaces/SBogers10/farmfun.komma.pro/app/Komma/Teamleader/Resources/User.php
<?php
namespace App\Komma\Teamleader\Resources;
use App\Komma\Teamleader\Base\ApiResource;
class User extends ApiResource
{
public string $id;
public object $account;
public string $first_name;
public string $last_name;
public string $email;
public string $language;
public ?string $function;
public string $status;
/**
* @return string
*/
public function fullName(): string
{
return $this->first_name.' '.$this->last_name;
}
/**
* The attributes can be skipped during the factory building
*
* @var array
*/
protected array $_skippableAttributes = [
'avatar_url',
'telephones',
];
}