File: D:/HostingSpaces/farmfun/reserveren.farmfun.be/app/Komma/Teamleader/Resources/Company.php
<?php
namespace App\Komma\Teamleader\Resources;
use App\Komma\Teamleader\Base\ApiResource;
use Carbon\Carbon;
class Company extends ApiResource
{
public string $id;
public string $name;
public string $status;
public ?object $business_type;
public ?string $national_identification_number;
public ?string $vat_number;
public array $emails;
public array $telephones;
public ?string $website;
public ?object $primary_address;
public ?string $iban;
public ?string $bic;
public string $language;
public ?string $preferred_currency;
public ?string $activity_code;
public ?object $payment_term;
public object $invoicing_preferences;
public object $responsible_user;
public array $tags;
public Carbon $added_at;
public Carbon $updated_at;
public string $web_url;
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected array $_dates = [
'added_at',
'updated_at',
];
}