D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
rest-api
/
v2
/
externals
/
Entity
/
Filename :
ClientStatistics.php
back
Copy
<?php // Copyright 1999-2024. WebPros International GmbH. All rights reserved. namespace PleskExt\RestApi\v2\Entity; use PleskRestApi\JMS\Serializer\Annotation\Type; /** * The client statistics */ class ClientStatistics { /** * @Type("integer") * @var int */ public $active_domains; /** * @Type("integer") * @var int */ public $subdomains; /** * @Type("integer") * @var int */ public $disk_space; /** * @Type("integer") * @var int */ public $email_postboxes; /** * @Type("integer") * @var int */ public $email_redirects; /** * @Type("integer") * @var int */ public $email_response_messages; /** * @Type("integer") * @var int */ public $mailing_lists; /** * @Type("integer") * @var int */ public $databases; /** * @Type("integer") * @var int */ public $traffic; /** * @Type("integer") * @var int */ public $traffic_prevday; }