-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUsageInfoResponse.php
74 lines (67 loc) · 1.67 KB
/
UsageInfoResponse.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php declare(strict_types=1);
namespace MyENA\RGW\Models;
use MyENA\RGW\AbstractModel;
use OpenApi\Annotations as OA;
/**
* @OA\Schema(
* schema="RGWUsageInfoResponse",
* type="object",
* @OA\Property(
* property="entries",
* type="array",
* @OA\Items(
* @OA\Schema(ref="#/components/schemas/RGWUsageInfoEntry")
* )
* ),
* @OA\Property(
* property="summary",
* type="array",
* @OA\Items(
* @OA\Schema(ref="#/components/schemas/RGWUsageInfoSummary")
* )
* )
* )
*/
/**
* Class UsageInfoResponse
* @package MyENA\RGW\Models
*/
class UsageInfoResponse extends AbstractModel
{
/** @var \MyENA\RGW\Models\UsageInfoEntry[] */
protected $entries = null;
/** @var \MyENA\RGW\Models\UsageInfoSummary[] */
protected $summary = null;
/**
* UsageInfoResponse constructor.
* @param array $data
*/
public function __construct(array $data = [])
{
parent::__construct($data);
if (is_array($this->entries)) {
foreach ($this->entries as &$entry) {
$entry = new UsageInfoEntry($entry);
}
}
if (is_array($this->summary)) {
foreach ($this->summary as &$summary) {
$summary = new UsageInfoSummary($summary);
}
}
}
/**
* @return \MyENA\RGW\Models\UsageInfoEntry[]
*/
public function getEntries(): array
{
return $this->entries;
}
/**
* @return \MyENA\RGW\Models\UsageInfoSummary[]
*/
public function getSummary(): array
{
return $this->summary;
}
}